]> git.saurik.com Git - wxWidgets.git/blame - contrib/samples/mmedia/Makefile.in
simple change to test new CVS server
[wxWidgets.git] / contrib / samples / mmedia / Makefile.in
CommitLineData
e8482f24
GL
1#
2# File: makefile.unx
3# Author: Julian Smart
4# Created: 1998
5# Updated:
6# Copyright: (c) 1998 Julian Smart
7#
8# "%W% %G%"
9#
10# Makefile for minimal example (UNIX).
11
12top_srcdir = @top_srcdir@/..
13top_builddir = ../../..
14program_dir = contrib/samples/mmedia
15
16PROGRAM=mmboard
17
18OBJECTS=mmboard.o mmbman.o
19
3711412e
RL
20EXTRA_LIBS= $(top_builddir)/contrib/src/mmedia/libmmedia.@WX_TARGET_LIBRARY_TYPE@ @ESD_LINK@
21APPEXTRADEFS=-I$(top_srcdir)/contrib/include
22
e8482f24
GL
23# the comment at the end of the next line is needed because otherwise autoconf
24# would remove this line completely - it contains a built-in hack to remove
25# any VPATH assignment not containing ':'
26VPATH = @PATH_IFS@$(top_srcdir)/contrib/samples/mmedia # ':' for autoconf
27
28include ../../../src/make.env
29
30.SUFFIXES: .o .cpp .c
31
32.cpp.o:
33 $(CC) -c $(CPPFLAGS) $(EXTRA_CPPFLAGS) -o $@ $<
34
35all: $(PROGRAM)
36
7b28757f
JS
37clean:
38 rm -f *.o $(PROGRAM)
39
e8482f24
GL
40mmboard: $(OBJECTS)
41 $(CC) $(LDFLAGS) -o mmboard $(OBJECTS) $(EXTRA_LIBS) $(LDLIBS) $(top_builddir)/lib/@WX_TARGET_LIBRARY@