~ubuntu-branches/ubuntu/karmic/frozen-bubble/karmic

« back to all changes in this revision

Viewing changes to SDL_mixer_patched/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette
  • Date: 2002-04-17 09:21:51 UTC
  • Revision ID: james.westby@ubuntu.com-20020417092151-7ye6ril7bgg9g0he
Tags: upstream-0.9.2
ImportĀ upstreamĀ versionĀ 0.9.2

Show diffs side-by-side

added added

removed removed

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