Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 757 Bytes

Makefile.am

File metadata and controls

40 lines (32 loc) · 757 Bytes
 
Oct 21, 1999
Oct 21, 1999
1
2
3
4
# Makefile.am for the SDL sample mixer library and players
lib_LTLIBRARIES = libmixer.la
Oct 21, 1999
Oct 21, 1999
5
6
SUBDIRS = @MUSIC_SUBDIRS@
DIST_SUBIDRS = mikmod timidity
Oct 21, 1999
Oct 21, 1999
7
8
9
10
11
12
13
14
15
16
17
18
19
20
libmixerincludedir = $(includedir)
libmixerinclude_HEADERS = \
mixer.h
libmixer_la_SOURCES = \
mixer.c \
music.c \
music_cmd.c \
music_cmd.h \
wave.h \
wavestream.c \
wavestream.h
Oct 21, 1999
Oct 21, 1999
21
22
23
24
25
26
27
28
29
30
31
if USE_MIKMOD
MIKMOD_LIB = mikmod/libmikmod.la
else
MIKMOD_LIB =
endif
if USE_TIMIDITY
TIMIDITY_LIB = timidity/libtimidity.la
else
TIMIDITY_LIB =
endif
Oct 21, 1999
Oct 21, 1999
32
33
34
libmixer_la_LDFLAGS = \
-release $(LT_RELEASE) \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
Oct 21, 1999
Oct 21, 1999
35
libmixer_la_LIBADD = $(MIKMOD_LIB) $(TIMIDITY_LIB)
Oct 21, 1999
Oct 21, 1999
36
37
38
39
40
bin_PROGRAMS = playwave playmus
playwave_LDADD = libmixer.la
playmus_LDADD = libmixer.la