Mercurial > otakunoraifu
annotate scn2k/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 | c7bcc0ec2267 |
children | 419761c8d9b9 |
rev | line source |
---|---|
22 | 1 noinst_LIBRARIES = libscn2k.a |
56
c7bcc0ec2267
* replaced Grp and Text classes by the TextImpl and GrpImpl ones
thib
parents:
54
diff
changeset
|
2 libscn2k_a_SOURCES = scn2k_cmd.cc scn2k_cmd.h scn2k_flags.h\ |
c7bcc0ec2267
* replaced Grp and Text classes by the TextImpl and GrpImpl ones
thib
parents:
54
diff
changeset
|
3 scn2k_text.cc scn2k_text.h scn2k_textimpl.cc\ |
c7bcc0ec2267
* replaced Grp and Text classes by the TextImpl and GrpImpl ones
thib
parents:
54
diff
changeset
|
4 scn2k_grp.cc scn2k_grp.h scn2k_grpimpl.cc\ |
c7bcc0ec2267
* replaced Grp and Text classes by the TextImpl and GrpImpl ones
thib
parents:
54
diff
changeset
|
5 scn2k_impl.cc \ |
54
d7cde171a1de
* scn2k_grp.cc now handles commands in a cleanier way \o/
thib
parents:
28
diff
changeset
|
6 command_handler.cc \ |
22 | 7 scn2k.h scn2k_impl.h |
8 | |
28
f1f22bfc4496
* Allow the building of scn2kdump by typing "make scn2kdump" in scn2k/
thib
parents:
22
diff
changeset
|
9 EXTRA_PROGRAMS = scn2kdump |
f1f22bfc4496
* Allow the building of scn2kdump by typing "make scn2kdump" in scn2k/
thib
parents:
22
diff
changeset
|
10 |
f1f22bfc4496
* Allow the building of scn2kdump by typing "make scn2kdump" in scn2k/
thib
parents:
22
diff
changeset
|
11 scn2kdump_SOURCES = scn2kdump.cc |
f1f22bfc4496
* Allow the building of scn2kdump by typing "make scn2kdump" in scn2k/
thib
parents:
22
diff
changeset
|
12 scn2kdump_LDADD = libscn2k.a ../system/libsystem.a |
f1f22bfc4496
* Allow the building of scn2kdump by typing "make scn2kdump" in scn2k/
thib
parents:
22
diff
changeset
|
13 |
22 | 14 INCLUDES = @SDL_CFLAGS@ |
15 | |
16 AM_CPPFLAGS = @CFLAGS@ @DEFS@ | |
17 | |
18 LDADD = @LDFLAGS@ @FT2_LIBS@ @SDL_LIBS@ -lSDL_mixer @SMPEG_LIBS@ @X_LIBS@ @LIBS@ | |
19 | |
20 |