Mercurial > otakunoraifu
annotate music2/Makefile.am @ 66:d112357a0ec1
Fix a bug with savegames introduced with changeset c7bcc0ec2267.
Warning: savegames created since c7bcc0ec2267 are probably corrupted,
you may have to start the game over.
If you chose not to do so, you should replace all occurrences of 'TextWindow' by 'TextImplWindow',
and 'Text Window' by 'TextImpl Window' in your save files.
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Sat, 11 Dec 2010 18:36:20 +0100 |
parents | 2110e0cf64ac |
children |
rev | line source |
---|---|
22 | 1 noinst_LIBRARIES = libmusic.a |
23
f94d28dcf7bc
No need for music2/config.h (which doesn't exist anymore)
thib
parents:
22
diff
changeset
|
2 libmusic_a_SOURCES = music.cc koedec.cc koedec_ogg.cc wavfile.cc \ |
22 | 3 movie.cc nwatowav.cc music.h wavfile.h |
4 | |
25 | 5 bin_PROGRAMS = $(NWATOWAV) |
6 EXTRA_PROGRAMS = nwatowav | |
7 | |
8 nwatowav_SOURCES = nwatowav.cc | |
9 nwatowav_CPPFLAGS = -DUSE_MAIN | |
22 | 10 |
11 INCLUDES = @SDL_CFLAGS@ | |
12 | |
13 AM_CPPFLAGS = @CFLAGS@ @DEFS@ | |
14 | |
15 LDADD = @LDFLAGS@ @FT2_LIBS@ @SDL_LIBS@ -lSDL_mixer @SMPEG_LIBS@ @X_LIBS@ @LIBS@ | |
16 | |
17 |