Mercurial > SDL_sound_CoreAudio
comparison Makefile.am @ 201:56bc776f0563
Midi support.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Fri, 04 Jan 2002 06:51:12 +0000 |
parents | 47cc2de2ae36 |
children | fe5251b5624c |
comparison
equal
deleted
inserted
replaced
200:f75ed2d72238 | 201:56bc776f0563 |
---|---|
11 SDL_sound_internal.h \ | 11 SDL_sound_internal.h \ |
12 extra_rwops.c \ | 12 extra_rwops.c \ |
13 extra_rwops.h \ | 13 extra_rwops.h \ |
14 audio_convert.c | 14 audio_convert.c |
15 | 15 |
16 if USE_TIMIDITY | |
17 TIMIDITY_LIB = decoders/timidity/libtimidity.la | |
18 else | |
19 TIMIDITY_LIB = | |
20 endif | |
21 | |
16 libSDL_sound_la_LDFLAGS = \ | 22 libSDL_sound_la_LDFLAGS = \ |
17 -release $(LT_RELEASE) \ | 23 -release $(LT_RELEASE) \ |
18 -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) | 24 -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) |
19 libSDL_sound_la_LIBADD = decoders/libdecoders.la | 25 libSDL_sound_la_LIBADD = \ |
20 | 26 decoders/libdecoders.la \ |
27 $(TIMIDITY_LIB) | |
21 | 28 |
22 EXTRA_DIST = \ | 29 EXTRA_DIST = \ |
23 CREDITS \ | 30 CREDITS \ |
24 COPYING \ | 31 COPYING \ |
25 CHANGELOG | 32 CHANGELOG |
26 |