Skip to content

Latest commit

 

History

History
53 lines (44 loc) · 1.12 KB

Makefile.am

File metadata and controls

53 lines (44 loc) · 1.12 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
13
14
alt_audio_convert.c \
alt_audio_convert.h \
audio_convert.c \
Sep 25, 2001
Sep 25, 2001
15
extra_rwops.c \
May 20, 2002
May 20, 2002
16
extra_rwops.h
Sep 25, 2001
Sep 25, 2001
17
Jan 4, 2002
Jan 4, 2002
18
19
20
21
22
23
if USE_TIMIDITY
TIMIDITY_LIB = decoders/timidity/libtimidity.la
else
TIMIDITY_LIB =
endif
Feb 21, 2002
Feb 21, 2002
24
25
26
27
28
29
if USE_MPGLIB
MPGLIB_LIB = decoders/mpglib/libmpglib.la
else
MPGLIB_LIB =
endif
Sep 25, 2001
Sep 25, 2001
30
31
32
libSDL_sound_la_LDFLAGS = \
-release $(LT_RELEASE) \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
Jan 4, 2002
Jan 4, 2002
33
34
libSDL_sound_la_LIBADD = \
decoders/libdecoders.la \
Feb 21, 2002
Feb 21, 2002
35
$(TIMIDITY_LIB) $(MPGLIB_LIB)
Oct 10, 2001
Oct 10, 2001
36
37
EXTRA_DIST = \
Oct 15, 2001
Oct 15, 2001
38
CREDITS \
Dec 26, 2001
Dec 26, 2001
39
COPYING \
Feb 5, 2002
Feb 5, 2002
40
CHANGELOG \
Apr 29, 2002
Apr 29, 2002
41
CWProject.sit \
Jun 7, 2002
Jun 7, 2002
42
PBProjects.tar.gz \
Aug 22, 2002
Aug 22, 2002
43
borland.zip \
Oct 15, 2003
Oct 15, 2003
44
45
Doxyfile \
VisualC
Jun 7, 2002
Jun 7, 2002
46
47
dist-hook:
Oct 12, 2003
Oct 12, 2003
48
49
50
51
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
52
rm -rf `find $(distdir) -type d -name ".svn"`