Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 1.07 KB

Makefile.am

File metadata and controls

51 lines (42 loc) · 1.07 KB
 
Sep 25, 2001
Sep 25, 2001
1
2
lib_LTLIBRARIES = libSDL_sound.la
Jan 19, 2002
Jan 19, 2002
3
SUBDIRS = decoders . playsound
Sep 25, 2001
Sep 25, 2001
4
Sep 25, 2001
Sep 25, 2001
5
6
7
libSDL_soundincludedir = $(includedir)/SDL
libSDL_soundinclude_HEADERS = \
SDL_sound.h
Sep 25, 2001
Sep 25, 2001
8
9
10
libSDL_sound_la_SOURCES = \
SDL_sound.c \
Sep 25, 2001
Sep 25, 2001
11
SDL_sound_internal.h \
Oct 12, 2003
Oct 12, 2003
12
audio_convert.c \
Sep 25, 2001
Sep 25, 2001
13
extra_rwops.c \
May 20, 2002
May 20, 2002
14
extra_rwops.h
Sep 25, 2001
Sep 25, 2001
15
Jan 4, 2002
Jan 4, 2002
16
17
18
19
20
21
if USE_TIMIDITY
TIMIDITY_LIB = decoders/timidity/libtimidity.la
else
TIMIDITY_LIB =
endif
Jan 30, 2009
Jan 30, 2009
22
23
if USE_LIBMPG123
MPG123_LIB = decoders/libmpg123/libmpg123.la
Feb 21, 2002
Feb 21, 2002
24
else
Jan 30, 2009
Jan 30, 2009
25
MPG123_LIB =
Feb 21, 2002
Feb 21, 2002
26
27
endif
Sep 25, 2001
Sep 25, 2001
28
29
30
libSDL_sound_la_LDFLAGS = \
-release $(LT_RELEASE) \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
Jan 4, 2002
Jan 4, 2002
31
32
libSDL_sound_la_LIBADD = \
decoders/libdecoders.la \
Jan 30, 2009
Jan 30, 2009
33
$(TIMIDITY_LIB) $(MPG123_LIB)
Oct 10, 2001
Oct 10, 2001
34
35
EXTRA_DIST = \
Oct 15, 2001
Oct 15, 2001
36
CREDITS \
Dec 26, 2001
Dec 26, 2001
37
COPYING \
Feb 5, 2002
Feb 5, 2002
38
CHANGELOG \
Apr 29, 2002
Apr 29, 2002
39
CWProject.sit \
Jun 7, 2002
Jun 7, 2002
40
PBProjects.tar.gz \
Aug 22, 2002
Aug 22, 2002
41
borland.zip \
Oct 15, 2003
Oct 15, 2003
42
43
Doxyfile \
VisualC
Jun 7, 2002
Jun 7, 2002
44
45
dist-hook:
Oct 12, 2003
Oct 12, 2003
46
47
48
49
mkdir $(distdir)/docs
echo "Docs are generated with the program "Doxygen" (http://www.doxygen.org/)," >> $(distdir)/docs/README
echo " or can be read online at http://icculus.org/SDL_sound/docs/" >> $(distdir)/docs/README
echo >> $(distdir)/docs/README
Apr 17, 2008
Apr 17, 2008
50
rm -rf `find $(distdir) -type d -name ".svn"`