~ubuntu-branches/debian/squeeze/freeciv/squeeze

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Clint Adams, Karl Goetz, Clint Adams
  • Date: 2010-02-23 22:09:02 UTC
  • mfrom: (1.2.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20100223220902-kiyrmr9i4152cka5
Tags: 2.2.0-1
[ Karl Goetz ]
* Remove civserver files in /etc/ggzd/ (Closes: 523772, 517787)
* Adding ${misc:Depends} to all binary packages (lintian warnings)

[ Clint Adams ]
* New upstream version.
  - Drop data_dsc_use_bindir.diff (binary pathnames have changed).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
## Process this file with automake to produce Makefile.in
2
2
 
3
 
ACLOCAL_AMFLAGS = -I m4
 
3
ACLOCAL_AMFLAGS = -I m4 -I dependencies/m4
4
4
 
5
5
if CLIENT
6
6
CSUBDIRS = client
31
31
endif
32
32
 
33
33
 
34
 
SUBDIRS=        $(DSUBDIRS) intl utility common tests win32 $(SSUBDIRS) $(CSUBDIRS) po doc $(MSUBDIRS)
 
34
SUBDIRS=        $(DSUBDIRS) utility common tests win32 $(SSUBDIRS) $(CSUBDIRS) po doc $(MSUBDIRS)
35
35
 
36
36
## Automake should distribute config.rpath automatically - and new
37
37
## versions probably do. We still support versions that do not, so
41
41
                config.mac.h                    \
42
42
                configure.ac                    \
43
43
                diff_ignore                     \
44
 
                amiga/Freeciv.start             \
45
 
                amiga/amigaclient.c             \
46
 
                amiga/amigaserver.c             \
47
 
                amiga/config.h                  \
48
 
                amiga/declgate.h                \
49
 
                amiga/gettext.c                 \
50
 
                amiga/libintl.h                 \
51
 
                amiga/myregargs.h               \
52
 
                amiga/ReadMe                    \
53
 
                amiga/ReadMe.2Amigas            \
54
 
                amiga/ReadMe.developer          \
55
 
                amiga/SDI_compiler.h            \
56
 
                amiga/smakefile                 \
57
 
                amiga/vmakefile                 \
58
 
                amiga/vsnprintf.c               \
59
44
                bootstrap/civ.in                \
60
45
                bootstrap/ser.in                \
 
46
                bootstrap/fc_svnrev_gen.h.in    \
 
47
                bootstrap/generate_svnrev.sh    \
61
48
                bootstrap/freeciv.desktop.in    \
62
49
                bootstrap/freeciv-server.desktop.in     \
63
50
                bootstrap/freeciv.spec.in       \
64
51
                bootstrap/undep.sh.in           \
65
52
                bootstrap/config.rpath          \
66
53
                m4/ac_path_lib.m4               \
 
54
                m4/alsa.m4                      \
67
55
                m4/auth.m4                      \
68
56
                m4/c99.m4                       \
69
57
                m4/codeset.m4                   \
70
58
                m4/compiler.m4                  \
71
59
                m4/debug.m4                     \
72
 
                m4/alsa.m4                      \
73
60
                m4/freetype2.m4                 \
74
 
                m4/gettext.m4                   \
75
61
                m4/gettimeofday.m4              \
76
62
                m4/ggz.m4                       \
77
63
                m4/glib-2.0.m4                  \
 
64
                m4/glibc21.m4                   \
78
65
                m4/glib-gettext.m4              \
79
66
                m4/glib.m4                      \
80
 
                m4/glibc21.m4                   \
81
67
                m4/gtk-2.0.m4                   \
82
68
                m4/gtk2-client.m4               \
83
69
                m4/iconv.m4                     \
96
82
                m4/sdl-client.m4                \
97
83
                m4/sdl.m4                       \
98
84
                m4/sound.m4                     \
99
 
                m4/version.m4                   \
100
85
                m4/vsnprintf.m4                 \
101
86
                m4/win32-client.m4              \
 
87
                m4/xaw-client.m4                \
102
88
                m4/x.m4                         \
103
 
                m4/xaw-client.m4                \
104
89
                vms/config.h_vms                \
105
90
                vms/freeciv_h.vms               \
106
91
                vms/imlib_config.h_vms          \
114
99
        cd tests && $(MAKE) $(AM_MAKEFLAGS) src-check
115
100
 
116
101
.PHONY: src-check
117