]> git.saurik.com Git - wxWidgets.git/blame_incremental - utils/wxMMedia2/sample/Makefile.in
Compile fixes.
[wxWidgets.git] / utils / wxMMedia2 / sample / Makefile.in
... / ...
CommitLineData
1#
2# File: Makefile.in
3# Author: Julian Smart
4# Created: 1998
5# Updated:
6# Copyright: (c) 1998 Julian Smart
7#
8# "%W% %G%"
9#
10# Makefile for wxsocket example (UNIX).
11
12top_srcdir = @top_srcdir@/..
13top_builddir = ../../..
14program_dir = utils/wxMMedia2/sample
15# the comment at the end of the next line is needed because otherwise autoconf
16# would remove this line completely - it contains a built-in hack to remove
17# any VPATH assignment not containing ':'
18VPATH = @PATH_IFS@$(top_srcdir)/utils/wxMMedia2/sample # ':' for autoconf
19
20# Clears all default suffixes
21.SUFFIXES: .o .cpp .c .cxx
22
23.cpp.o :
24 $(CC) -c $(CPPFLAGS) -o $@ $<
25
26# Set defaults from configure
27include ../../../src/make.env
28
29LDLIBS2 = $(LDLIBS) ../lib/libwxmmedia2.a
30
31all: test_med test_med3 test_med5 test_med2 test_med4
32
33test_med: test_med.o ../../../lib/@WX_TARGET_LIBRARY@
34 $(CC) $(LDFLAGS) -o test_med test_med.o $(LDLIBS2)
35
36test_med2: test_med2.o ../../../lib/@WX_TARGET_LIBRARY@
37 $(CC) $(LDFLAGS) -o test_med2 test_med2.o $(LDLIBS2)
38
39test_med3: test_med3.o ../../../lib/@WX_TARGET_LIBRARY@
40 $(CC) $(LDFLAGS) -o test_med3 test_med3.o $(LDLIBS2)
41
42test_med4: test_med4.o ../../../lib/@WX_TARGET_LIBRARY@
43 $(CC) $(LDFLAGS) -o test_med4 test_med4.o $(LDLIBS2)
44
45test_med5: test_med5.o ../../../lib/@WX_TARGET_LIBRARY@
46 $(CC) $(LDFLAGS) -o test_med5 test_med5.o $(LDLIBS2)
47
48
49clean:
50 rm -f test_med* core
51