Mercurial > otakunoraifu
annotate scn2k/Makefile.am @ 74:f8751d74918b default tip
Remove “duplicate” functions as they can be remplaced by a nearly-identical existing function.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Sat, 02 Apr 2011 19:13:54 +0200 |
parents | 419761c8d9b9 |
children |
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 | |
67
419761c8d9b9
Add configure option to build scn2kdump.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
56
diff
changeset
|
9 bin_PROGRAMS = $(SCN2KDUMP) |
28
f1f22bfc4496
* Allow the building of scn2kdump by typing "make scn2kdump" in scn2k/
thib
parents:
22
diff
changeset
|
10 EXTRA_PROGRAMS = scn2kdump |
f1f22bfc4496
* Allow the building of scn2kdump by typing "make scn2kdump" in scn2k/
thib
parents:
22
diff
changeset
|
11 |
f1f22bfc4496
* Allow the building of scn2kdump by typing "make scn2kdump" in scn2k/
thib
parents:
22
diff
changeset
|
12 scn2kdump_SOURCES = scn2kdump.cc |
f1f22bfc4496
* Allow the building of scn2kdump by typing "make scn2kdump" in scn2k/
thib
parents:
22
diff
changeset
|
13 scn2kdump_LDADD = libscn2k.a ../system/libsystem.a |
f1f22bfc4496
* Allow the building of scn2kdump by typing "make scn2kdump" in scn2k/
thib
parents:
22
diff
changeset
|
14 |
22 | 15 INCLUDES = @SDL_CFLAGS@ |
16 | |
17 AM_CPPFLAGS = @CFLAGS@ @DEFS@ | |
18 | |
19 LDADD = @LDFLAGS@ @FT2_LIBS@ @SDL_LIBS@ -lSDL_mixer @SMPEG_LIBS@ @X_LIBS@ @LIBS@ | |
20 | |
21 |