annotate window/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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22
759202cf1756 Use automake
thib
parents:
diff changeset
1 noinst_LIBRARIES = libwindow.a
759202cf1756 Use automake
thib
parents:
diff changeset
2 libwindow_a_SOURCES = render.cc event.cc system.cc picture.cc widget.cc \
32
97b752b43502 * Removed SDL_rotozoom.{cc,h} (now uses SDL_gfx). TODO: improve configure.ac
thib
parents: 22
diff changeset
3 button.cc menuitem.cc rect.cc \
56
c7bcc0ec2267 * replaced Grp and Text classes by the TextImpl and GrpImpl ones
thib
parents: 32
diff changeset
4 event.h menuitem.h picture.h rect.h render.h \
22
759202cf1756 Use automake
thib
parents:
diff changeset
5 surface.h system.h widget.h
759202cf1756 Use automake
thib
parents:
diff changeset
6
759202cf1756 Use automake
thib
parents:
diff changeset
7 INCLUDES = @SDL_CFLAGS@
759202cf1756 Use automake
thib
parents:
diff changeset
8
759202cf1756 Use automake
thib
parents:
diff changeset
9 AM_CPPFLAGS = @CFLAGS@ @DEFS@
759202cf1756 Use automake
thib
parents:
diff changeset
10
759202cf1756 Use automake
thib
parents:
diff changeset
11 LDADD = @LDFLAGS@ @FT2_LIBS@ @SDL_LIBS@ @LIBS@
759202cf1756 Use automake
thib
parents:
diff changeset
12
759202cf1756 Use automake
thib
parents:
diff changeset
13