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

Comparing deliantra/server/server/Makefile.am (file contents):
Revision 1.19 by root, Sun Dec 31 10:40:01 2006 UTC vs.
Revision 1.26 by root, Thu Apr 19 16:23:48 2007 UTC

1#
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#
7# Copyright (C) 1992 Frank Tore Johansen 1# Copyright (C) 1992 Frank Tore Johansen
8# Copyright (C) 2001 Mark Wedel 2# Copyright (C) 2001 Mark Wedel
3# Copyright (C) 2007 Marc Alexander Lehmann
9# 4#
10# This program is free software; you can redistribute it and/or modify 5# This program is free software; you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by 6# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation; either version 2 of the License, or 7# the Free Software Foundation; either version 2 of the License, or
13# (at your option) any later version. 8# (at your option) any later version.
30 25
31crossfire_SOURCES = \ 26crossfire_SOURCES = \
32 alchemy.C\ 27 alchemy.C\
33 apply.C\ 28 apply.C\
34 attack.C\ 29 attack.C\
35 ban.C\
36 build_map.C\ 30 build_map.C\
37 c_chat.C\
38 c_misc.C\ 31 c_misc.C\
39 c_move.C\ 32 c_move.C\
40 c_new.C\ 33 c_new.C\
41 c_object.C\ 34 c_object.C\
42 c_party.C\ 35 c_party.C\
47 disease.C\ 40 disease.C\
48 egoitem.C \ 41 egoitem.C \
49 hiscore.C\ 42 hiscore.C\
50 gods.C\ 43 gods.C\
51 init.C\ 44 init.C\
52 login.C\
53 main.C\ 45 main.C\
54 monster.C\ 46 monster.C\
55 move.C\ 47 move.C\
56 pets.C\ 48 pets.C\
57 player.C\ 49 player.C\
68 swap.C\ 60 swap.C\
69 time.C\ 61 time.C\
70 weather.C\ 62 weather.C\
71 dynbuf.C\ 63 dynbuf.C\
72 freezethaw.C\ 64 freezethaw.C\
73 cfperl.xs ../plugins/common/plugin_common.C 65 cfperl.xs plugin_common.C
74 66
75SUFFIXES = .xs 67SUFFIXES = .xs
76 68
77EXTRA_DIST = typemap 69EXTRA_DIST = typemap genacc
78 70
79cfperl.C: cfperl.xs genacc typemap 71cfperl.C: cfperl.xs genacc typemap
80cfperl.C: ../include/object.h ../include/client.h ../include/player.h 72cfperl.C: ../include/object.h ../include/client.h ../include/player.h
81cfperl.C: ../include/map.h ../include/living.h ../include/global.h 73cfperl.C: ../include/map.h ../include/living.h ../include/global.h
82cfperl.C: ../random_maps/random_map.h 74cfperl.C: ../include/region.h ../random_maps/random_map.h
83 75
84.xs.C: typemap 76.xs.C: typemap
85 $(PERL) -MExtUtils::Embed -e xsinit -- -std cf 77 $(PERL) -MExtUtils::Embed -e xsinit -- -std cf
86 PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -csuffix .C -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap -prototypes cfperl.xs >$@ 78 PERL="$(PERL)" srcdir="$(srcdir)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -csuffix .C -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap $(srcdir)/typemap -prototypes $(srcdir)/cfperl.xs >$@
87 79
88AM_CPPFLAGS = -I$(top_srcdir)/include -DDATADIR=\"$(pkgdatadir)\" -DCONFDIR=\"$(pkgconfdir)\" \ 80AM_CPPFLAGS = -I$(top_srcdir)/include -DDATADIR=\"$(pkgdatadir)\" -DCONFDIR=\"$(pkgconfdir)\" \
89 -DLIBDIR=\"$(pkglibdir)\" -DLOCALDIR=\"$(pkgstatedir)\" \ 81 -DLIBDIR=\"$(pkglibdir)\" -DLOCALDIR=\"$(pkgstatedir)\" \
90 -DPLUGIN_SUFFIX=\".so\" \ 82 -DPLUGIN_SUFFIX=\".so\"
91 -I$(top_srcdir)/plugins/common/include
92 83
93LIBDL= 84LIBDL=
94crossfire_LDFLAGS= 85crossfire_LDFLAGS=
95crossfire_LDADD = ../common/libcross.a ../random_maps/librandom_map.a \ 86crossfire_LDADD = ../common/libcross.a ../random_maps/librandom_map.a \
96 ../socket/libsocket.a $(LIBDL) $(PERLLIB) 87 ../socket/libsocket.a $(LIBDL) $(PERLLIB)
97 88
98../common/libcross.a: 89../common/libcross.a:
99 ( cd ../common ; make libcross.a ) 90 ( cd ../common ; $(MAKE) libcross.a )
100 91
101../random_maps/librandom_map.a: 92../random_maps/librandom_map.a:
102 ( cd ../random_maps ; make librandom_map.a ) 93 ( cd ../random_maps ; $(MAKE) librandom_map.a )
103 94
104../socket/libsocket.a: 95../socket/libsocket.a:
105 ( cd ../socket ; make libsocket.a ) 96 ( cd ../socket ; $(MAKE) libsocket.a )
106 97
107# Check if everything is installed as it should 98# Check if everything is installed as it should
108installcheck-local: 99#installcheck-local:
109 $(bindir)/crossfire -o 100# $(bindir)/crossfire -o
110 101

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines