Mercurial > otakunoraifu
annotate scn2k/Makefile.am @ 56:c7bcc0ec2267
* replaced Grp and Text classes by the TextImpl and GrpImpl ones
* splitted scn2k.h into smaller header files
* moved some definitions from scn2k_*.cc to the header files
* moved opcode implementation to scn2k_*impl.cc
author | thib |
---|---|
date | Thu, 30 Apr 2009 19:05:09 +0000 |
parents | d7cde171a1de |
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 |