annotate Makefile.am @ 322:31cc49d7d0ce

MacOS fixes.
author Ryan C. Gordon <icculus@icculus.org>
date Mon, 29 Apr 2002 06:12:47 +0000
parents 6fe6de401b63
children 5a72981b8cba
rev   line source
72
02bb616ba974 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
1 lib_LTLIBRARIES = libSDL_sound.la
02bb616ba974 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
2
229
fe5251b5624c Changed test dir to playsound, and make playsound part of standard build and
Ryan C. Gordon <icculus@icculus.org>
parents: 201
diff changeset
3 SUBDIRS = decoders . playsound
72
02bb616ba974 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
4
81
c047ae35d5fa From Max Horn: fixes header installation.
Ryan C. Gordon <icculus@icculus.org>
parents: 72
diff changeset
5 libSDL_soundincludedir = $(includedir)/SDL
c047ae35d5fa From Max Horn: fixes header installation.
Ryan C. Gordon <icculus@icculus.org>
parents: 72
diff changeset
6 libSDL_soundinclude_HEADERS = \
c047ae35d5fa From Max Horn: fixes header installation.
Ryan C. Gordon <icculus@icculus.org>
parents: 72
diff changeset
7 SDL_sound.h
72
02bb616ba974 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
8
02bb616ba974 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
9 libSDL_sound_la_SOURCES = \
02bb616ba974 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
10 SDL_sound.c \
81
c047ae35d5fa From Max Horn: fixes header installation.
Ryan C. Gordon <icculus@icculus.org>
parents: 72
diff changeset
11 SDL_sound_internal.h \
72
02bb616ba974 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
12 extra_rwops.c \
143
3e60862fbd76 Start of audio converter work.
Ryan C. Gordon <icculus@icculus.org>
parents: 134
diff changeset
13 extra_rwops.h \
3e60862fbd76 Start of audio converter work.
Ryan C. Gordon <icculus@icculus.org>
parents: 134
diff changeset
14 audio_convert.c
72
02bb616ba974 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
15
201
56bc776f0563 Midi support.
Ryan C. Gordon <icculus@icculus.org>
parents: 184
diff changeset
16 if USE_TIMIDITY
56bc776f0563 Midi support.
Ryan C. Gordon <icculus@icculus.org>
parents: 184
diff changeset
17 TIMIDITY_LIB = decoders/timidity/libtimidity.la
56bc776f0563 Midi support.
Ryan C. Gordon <icculus@icculus.org>
parents: 184
diff changeset
18 else
56bc776f0563 Midi support.
Ryan C. Gordon <icculus@icculus.org>
parents: 184
diff changeset
19 TIMIDITY_LIB =
56bc776f0563 Midi support.
Ryan C. Gordon <icculus@icculus.org>
parents: 184
diff changeset
20 endif
56bc776f0563 Midi support.
Ryan C. Gordon <icculus@icculus.org>
parents: 184
diff changeset
21
262
6fe6de401b63 mpglib support.
Ryan C. Gordon <icculus@icculus.org>
parents: 247
diff changeset
22 if USE_MPGLIB
6fe6de401b63 mpglib support.
Ryan C. Gordon <icculus@icculus.org>
parents: 247
diff changeset
23 MPGLIB_LIB = decoders/mpglib/libmpglib.la
6fe6de401b63 mpglib support.
Ryan C. Gordon <icculus@icculus.org>
parents: 247
diff changeset
24 else
6fe6de401b63 mpglib support.
Ryan C. Gordon <icculus@icculus.org>
parents: 247
diff changeset
25 MPGLIB_LIB =
6fe6de401b63 mpglib support.
Ryan C. Gordon <icculus@icculus.org>
parents: 247
diff changeset
26 endif
6fe6de401b63 mpglib support.
Ryan C. Gordon <icculus@icculus.org>
parents: 247
diff changeset
27
72
02bb616ba974 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
28 libSDL_sound_la_LDFLAGS = \
02bb616ba974 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
29 -release $(LT_RELEASE) \
02bb616ba974 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
30 -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
201
56bc776f0563 Midi support.
Ryan C. Gordon <icculus@icculus.org>
parents: 184
diff changeset
31 libSDL_sound_la_LIBADD = \
56bc776f0563 Midi support.
Ryan C. Gordon <icculus@icculus.org>
parents: 184
diff changeset
32 decoders/libdecoders.la \
262
6fe6de401b63 mpglib support.
Ryan C. Gordon <icculus@icculus.org>
parents: 247
diff changeset
33 $(TIMIDITY_LIB) $(MPGLIB_LIB)
134
3ce7ede90d24 added CREDITS to EXTRA_DIST in Makefile.am
fingolfin
parents: 81
diff changeset
34
3ce7ede90d24 added CREDITS to EXTRA_DIST in Makefile.am
fingolfin
parents: 81
diff changeset
35 EXTRA_DIST = \
143
3e60862fbd76 Start of audio converter work.
Ryan C. Gordon <icculus@icculus.org>
parents: 134
diff changeset
36 CREDITS \
184
47cc2de2ae36 Changed reference to "LICENSE" file to "COPYING".
Ryan C. Gordon <icculus@icculus.org>
parents: 143
diff changeset
37 COPYING \
247
654f4f66b757 Added CWProjects.sit to EXTRA_DIST.
Ryan C. Gordon <icculus@icculus.org>
parents: 229
diff changeset
38 CHANGELOG \
322
31cc49d7d0ce MacOS fixes.
Ryan C. Gordon <icculus@icculus.org>
parents: 262
diff changeset
39 CWProject.sit \
31cc49d7d0ce MacOS fixes.
Ryan C. Gordon <icculus@icculus.org>
parents: 262
diff changeset
40 PBProjects.tar.gz