Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 756 Bytes

Makefile.am

File metadata and controls

40 lines (32 loc) · 756 Bytes
 
Oct 21, 1999
Oct 21, 1999
1
2
# Makefile.am for the SDL sample mixer library and players
Jan 5, 2000
Jan 5, 2000
3
lib_LTLIBRARIES = libmixer.la
Oct 21, 1999
Oct 21, 1999
4
Oct 21, 1999
Oct 21, 1999
5
6
SUBDIRS = @MUSIC_SUBDIRS@
DIST_SUBIDRS = mikmod timidity
Oct 21, 1999
Oct 21, 1999
7
Jan 5, 2000
Jan 5, 2000
8
9
libmixerincludedir = $(includedir)
libmixerinclude_HEADERS = \
Oct 21, 1999
Oct 21, 1999
10
11
mixer.h
Jan 5, 2000
Jan 5, 2000
12
libmixer_la_SOURCES = \
Oct 21, 1999
Oct 21, 1999
13
14
15
16
17
18
19
20
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
Jan 5, 2000
Jan 5, 2000
32
libmixer_la_LDFLAGS = \
Oct 21, 1999
Oct 21, 1999
33
34
-release $(LT_RELEASE) \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
Jan 5, 2000
Jan 5, 2000
35
libmixer_la_LIBADD = $(MIKMOD_LIB) $(TIMIDITY_LIB)
Oct 21, 1999
Oct 21, 1999
36
37
38
bin_PROGRAMS = playwave playmus
Jan 5, 2000
Jan 5, 2000
39
40
playwave_LDADD = libmixer.la
playmus_LDADD = libmixer.la