Skip to content

Latest commit

 

History

History
78 lines (66 loc) · 1.6 KB

Makefile.am

File metadata and controls

78 lines (66 loc) · 1.6 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 \
Sep 9, 2002
Sep 9, 2002
17
18
load_ogg.c \
load_ogg.h \
Oct 21, 1999
Oct 21, 1999
19
20
21
22
mixer.c \
music.c \
music_cmd.c \
music_cmd.h \
Jul 3, 2000
Jul 3, 2000
23
24
music_ogg.c \
music_ogg.h \
Oct 21, 1999
Oct 21, 1999
25
wavestream.c \
Sep 11, 2001
Sep 11, 2001
26
27
28
29
30
wavestream.h \
effect_position.c \
effect_stereoreverse.c \
effects_internal.c \
effects_internal.h
Oct 21, 1999
Oct 21, 1999
31
Oct 21, 1999
Oct 21, 1999
32
33
34
35
36
37
38
39
40
41
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
42
if USE_NATIVE_MIDI
Feb 13, 2002
Feb 13, 2002
43
44
45
if USE_NATIVE_MIDI_GPL
NATIVE_MIDI_LIB = native_midi_gpl/libnativemidi_gpl.la
else
Aug 19, 2001
Aug 19, 2001
46
NATIVE_MIDI_LIB = native_midi/libnativemidi.la
Feb 13, 2002
Feb 13, 2002
47
endif
Aug 19, 2001
Aug 19, 2001
48
49
50
else
NATIVE_MIDI_LIB =
endif
Oct 21, 1999
Oct 21, 1999
51
Jan 20, 2000
Jan 20, 2000
52
53
EXTRA_DIST = \
CHANGES \
Feb 2, 2000
Feb 2, 2000
54
VisualC.zip \
Aug 19, 2001
Aug 19, 2001
55
PBProjects.tar.gz \
Apr 5, 2001
Apr 5, 2001
56
MPWmake.sea.bin \
May 20, 2002
May 20, 2002
57
CWProjects.sea.bin \
Apr 28, 2001
Apr 28, 2001
58
59
SDL_mixer.spec \
SDL_mixer.spec.in \
Jan 20, 2000
Jan 20, 2000
60
61
autogen.sh
Jan 18, 2000
Jan 18, 2000
62
libSDL_mixer_la_LDFLAGS = \
Apr 28, 2001
Apr 28, 2001
63
-release $(LT_RELEASE) \
Oct 21, 1999
Oct 21, 1999
64
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
Jan 26, 2003
Jan 26, 2003
65
libSDL_mixer_la_LIBADD = $(MIKMOD_LIB) $(TIMIDITY_LIB) $(NATIVE_MIDI_LIB) @SYSTEM_LIBS@ @SDL_LIBS@
Oct 21, 1999
Oct 21, 1999
66
Feb 9, 2003
Feb 9, 2003
67
noinst_PROGRAMS = playwave playmus
Oct 21, 1999
Oct 21, 1999
68
Jan 26, 2003
Jan 26, 2003
69
70
playwave_LDADD = libSDL_mixer.la @SDL_LIBS@
playmus_LDADD = libSDL_mixer.la @SDL_LIBS@
Jan 20, 2000
Jan 20, 2000
71
72
# Rule to build tar-gzipped distribution package
Apr 28, 2001
Apr 28, 2001
73
$(PACKAGE)-$(VERSION).tar.gz: distcheck
Jan 20, 2000
Jan 20, 2000
74
75
76
# Rule to build RPM distribution package
rpm: $(PACKAGE)-$(VERSION).tar.gz
Apr 28, 2001
Apr 28, 2001
77
rpm -ta $(PACKAGE)-$(VERSION).tar.gz