annotate system/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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22
759202cf1756 Use automake
thib
parents:
diff changeset
1 noinst_LIBRARIES = libsystem.a
759202cf1756 Use automake
thib
parents:
diff changeset
2 libsystem_a_SOURCES = file.cc system_config.cc file.h file_impl.h system_config.h
759202cf1756 Use automake
thib
parents:
diff changeset
3
25
2110e0cf64ac * clean littles things in configure.ac
thib
parents: 22
diff changeset
4 bin_PROGRAMS = $(VISARC)
2110e0cf64ac * clean littles things in configure.ac
thib
parents: 22
diff changeset
5 EXTRA_PROGRAMS = visarc
2110e0cf64ac * clean littles things in configure.ac
thib
parents: 22
diff changeset
6
2110e0cf64ac * clean littles things in configure.ac
thib
parents: 22
diff changeset
7 visarc_SOURCES = visarc.cc
2110e0cf64ac * clean littles things in configure.ac
thib
parents: 22
diff changeset
8 visarc_LDADD = libsystem.a
22
759202cf1756 Use automake
thib
parents:
diff changeset
9
759202cf1756 Use automake
thib
parents:
diff changeset
10 AM_CPPFLAGS = @CFLAGS@ @DEFS@
759202cf1756 Use automake
thib
parents:
diff changeset
11
759202cf1756 Use automake
thib
parents:
diff changeset
12 LDADD = @LDFLAGS@ @LIBS@
759202cf1756 Use automake
thib
parents:
diff changeset
13
759202cf1756 Use automake
thib
parents:
diff changeset
14