Skip to content

Latest commit

 

History

History
76 lines (64 loc) · 1.52 KB

Makefile.am

File metadata and controls

76 lines (64 loc) · 1.52 KB
 
Oct 21, 1999
Oct 21, 1999
1
2
# Makefile.am for the SDL sample mixer library and players
Jan 18, 2000
Jan 18, 2000
3
lib_LTLIBRARIES = libSDL_mixer.la
Oct 21, 1999
Oct 21, 1999
4
Oct 21, 1999
Oct 21, 1999
5
SUBDIRS = @MUSIC_SUBDIRS@
Feb 13, 2002
Feb 13, 2002
6
DIST_SUBDIRS = mikmod timidity native_midi native_midi_gpl
Oct 21, 1999
Oct 21, 1999
7
Jan 18, 2000
Jan 18, 2000
8
9
libSDL_mixerincludedir = $(includedir)/SDL
libSDL_mixerinclude_HEADERS = \
Jan 14, 2000
Jan 14, 2000
10
SDL_mixer.h
Oct 21, 1999
Oct 21, 1999
11
Jan 18, 2000
Jan 18, 2000
12
libSDL_mixer_la_SOURCES = \
Sep 11, 2001
Sep 11, 2001
13
14
15
16
load_aiff.c \
load_aiff.h \
load_voc.c \
load_voc.h \
Oct 21, 1999
Oct 21, 1999
17
18
19
20
mixer.c \
music.c \
music_cmd.c \
music_cmd.h \
Jul 3, 2000
Jul 3, 2000
21
22
music_ogg.c \
music_ogg.h \
Oct 21, 1999
Oct 21, 1999
23
wavestream.c \
Sep 11, 2001
Sep 11, 2001
24
25
26
27
28
wavestream.h \
effect_position.c \
effect_stereoreverse.c \
effects_internal.c \
effects_internal.h
Oct 21, 1999
Oct 21, 1999
29
Oct 21, 1999
Oct 21, 1999
30
31
32
33
34
35
36
37
38
39
if USE_MIKMOD
MIKMOD_LIB = mikmod/libmikmod.la
else
MIKMOD_LIB =
endif
if USE_TIMIDITY
TIMIDITY_LIB = timidity/libtimidity.la
else
TIMIDITY_LIB =
endif
Aug 19, 2001
Aug 19, 2001
40
if USE_NATIVE_MIDI
Feb 13, 2002
Feb 13, 2002
41
42
43
if USE_NATIVE_MIDI_GPL
NATIVE_MIDI_LIB = native_midi_gpl/libnativemidi_gpl.la
else
Aug 19, 2001
Aug 19, 2001
44
NATIVE_MIDI_LIB = native_midi/libnativemidi.la
Feb 13, 2002
Feb 13, 2002
45
endif
Aug 19, 2001
Aug 19, 2001
46
47
48
else
NATIVE_MIDI_LIB =
endif
Oct 21, 1999
Oct 21, 1999
49
Jan 20, 2000
Jan 20, 2000
50
51
EXTRA_DIST = \
CHANGES \
Feb 2, 2000
Feb 2, 2000
52
VisualC.zip \
Aug 19, 2001
Aug 19, 2001
53
PBProjects.tar.gz \
Apr 5, 2001
Apr 5, 2001
54
MPWmake.sea.bin \
Jun 28, 2000
Jun 28, 2000
55
CWprojects.sea.hqx \
Apr 28, 2001
Apr 28, 2001
56
57
SDL_mixer.spec \
SDL_mixer.spec.in \
Jan 20, 2000
Jan 20, 2000
58
59
autogen.sh
Jan 18, 2000
Jan 18, 2000
60
libSDL_mixer_la_LDFLAGS = \
Apr 28, 2001
Apr 28, 2001
61
-release $(LT_RELEASE) \
Oct 21, 1999
Oct 21, 1999
62
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
Aug 19, 2001
Aug 19, 2001
63
libSDL_mixer_la_LIBADD = $(MIKMOD_LIB) $(TIMIDITY_LIB) $(NATIVE_MIDI_LIB)
Oct 21, 1999
Oct 21, 1999
64
65
66
bin_PROGRAMS = playwave playmus
Jan 18, 2000
Jan 18, 2000
67
68
playwave_LDADD = libSDL_mixer.la
playmus_LDADD = libSDL_mixer.la
Jan 20, 2000
Jan 20, 2000
69
70
# Rule to build tar-gzipped distribution package
Apr 28, 2001
Apr 28, 2001
71
$(PACKAGE)-$(VERSION).tar.gz: distcheck
Jan 20, 2000
Jan 20, 2000
72
73
74
# Rule to build RPM distribution package
rpm: $(PACKAGE)-$(VERSION).tar.gz
Apr 28, 2001
Apr 28, 2001
75
rpm -ta $(PACKAGE)-$(VERSION).tar.gz