ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/Makefile.am
(Generate patch)

Comparing deliantra/server/common/Makefile.am (file contents):
Revision 1.3 by elmex, Sun Aug 13 17:16:00 2006 UTC vs.
Revision 1.9 by root, Thu May 24 00:24:10 2007 UTC

1# 1#
2# Makefile for crossfire 0.95.0 and beyond 2# Makefile for crossfire 0.95.0 and beyond
3#
4# This file will eventually be replaced by a configure script. But for
5# now, this simple makefile should do the job.
6# 3#
7# Copyright (C) 1992 Frank Tore Johansen 4# Copyright (C) 1992 Frank Tore Johansen
8# Copyright (C) 2001 Mark Wedel 5# Copyright (C) 2001 Mark Wedel
9# 6#
10# This program is free software; you can redistribute it and/or modify 7# This program is free software; you can redistribute it and/or modify
22# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 19# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23# 20#
24# The author can be reached via e-mail to mwedel@scruz.net 21# The author can be reached via e-mail to mwedel@scruz.net
25 22
26noinst_LIBRARIES = libcross.a 23noinst_LIBRARIES = libcross.a
27
28loader.C: loader.l
29 flex -i -o loader.C loader.l
30 24
31libcross_a_SOURCES = \ 25libcross_a_SOURCES = \
32 anim.C \ 26 anim.C \
33 arch.C\ 27 arch.C\
34 button.C\ 28 button.C\
48 map.C\ 42 map.C\
49 object.C\ 43 object.C\
50 path.C\ 44 path.C\
51 porting.C\ 45 porting.C\
52 player.C\ 46 player.C\
53 quest.C\
54 re-cmp.C\
55 readable.C\ 47 readable.C\
56 recipe.C\ 48 recipe.C\
57 region.C\ 49 region.C\
58 shstr.C\ 50 shstr.C\
59 time.C\ 51 time.C\
60 treasure.C\ 52 treasure.C\
61 utils.C 53 utils.C\
54 micropather.C
55
56EXTRA_DIST = README
62 57
63MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure 58MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure
64 59
65EXTRA_DIST = README
66AM_CPPFLAGS = -I$(top_srcdir)/include -DDATADIR=\"$(pkgdatadir)\" -DCONFDIR=\"$(pkgconfdir)\" \ 60AM_CPPFLAGS = -I$(top_srcdir)/include -DDATADIR=\"$(pkgdatadir)\" -DCONFDIR=\"$(pkgconfdir)\" \
67 -DLIBDIR=\"$(pkglibdir)\" -DLOCALDIR=\"$(pkgstatedir)\" 61 -DLIBDIR=\"$(pkglibdir)\" -DLOCALDIR=\"$(pkgstatedir)\"
68AM_LFLAGS = -i 62AM_LFLAGS = -i
69 63
70proto:
71 cproto -e -o ../include/libproto.h.bak $(CPPFLAGS) $(AM_CPPFLAGS) \
72 `echo $(SOURCES) loader.C " " | $(AWK) -v RS=" " '/.C$$/ { print }'`
73 sed -e "s/__signed/signed/g" -e "/inline/d" -e "/YY_BUFFER/d" -e "/yy_size_t/d" < ../include/libproto.h.bak > ../include/libproto.h
74 chmod 644 ../include/libproto.h
75 rm -f ../include/libproto.h.bak

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines