]> git.saurik.com Git - wxWidgets.git/blame - utils/wxMMedia/Makefile.in
* Fixes.
[wxWidgets.git] / utils / wxMMedia / Makefile.in
CommitLineData
4d6306eb
GL
1# WXXT base directory
2WXBASEDIR=@WXBASEDIR@
3
4# set the OS type for compilation
5OS=@OS@
6# compile a library only
7RULE=gslib
8
9# define common stuff
10
11# define library name
12LIB_TARGET=wxmmedia
13LIB_MAJOR=2
14LIB_MINOR=0
15# define library sources
16ADPCM_SRC=\
17g711.cpp g721.cpp g723_24.cpp g723_40.cpp g72x.cpp
18
19MMEDIA_SRC=\
20mmdata.cpp mmfile.cpp mmsolve.cpp sndsnd.cpp sndfrmt.cpp sndpcm.o \
21snduss.cpp sndfile.cpp sndwav.cpp mmriff.cpp vidbase.cpp vidxanm.cpp \
22cdbase.cpp cdunix.cpp
23
24LIB_SRC= $(ADPCM_SRC:%.cpp=adpcm/%.cpp) $(MMEDIA_SRC)
25
26#define library objects
27LIB_OBJ=\
28$(LIB_SRC:%.cpp=%.o)
29
30#additional things needed for compile
31ADD_COMPILE= -I$(UTILS)/wxthread
32
33all::
34 -mkdir -p adpcm
35
36# include the definitions now
37include ../../../template.mak
38