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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22
759202cf1756 Use automake
thib
parents:
diff changeset
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
759202cf1756 Use automake
thib
parents:
diff changeset
7 scn2k.h scn2k_impl.h
759202cf1756 Use automake
thib
parents:
diff changeset
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
759202cf1756 Use automake
thib
parents:
diff changeset
15 INCLUDES = @SDL_CFLAGS@
759202cf1756 Use automake
thib
parents:
diff changeset
16
759202cf1756 Use automake
thib
parents:
diff changeset
17 AM_CPPFLAGS = @CFLAGS@ @DEFS@
759202cf1756 Use automake
thib
parents:
diff changeset
18
759202cf1756 Use automake
thib
parents:
diff changeset
19 LDADD = @LDFLAGS@ @FT2_LIBS@ @SDL_LIBS@ -lSDL_mixer @SMPEG_LIBS@ @X_LIBS@ @LIBS@
759202cf1756 Use automake
thib
parents:
diff changeset
20
759202cf1756 Use automake
thib
parents:
diff changeset
21