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.39 by root, Fri Mar 26 00:59:21 2010 UTC vs.
Revision 1.52 by root, Wed Nov 16 23:42:02 2016 UTC

1# 1#
2# This file is part of Deliantra, the Roguelike Realtime MMORPG. 2# This file is part of Deliantra, the Roguelike Realtime MMORPG.
3# 3#
4# Copyright (©) 2006,2007 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4# Copyright (©) 2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5# Copyright (©) 1992 Frank Tore Johansen 5# Copyright (©) 1992 Frank Tore Johansen
6# Copyright (©) 2001 Mark Wedel 6# Copyright (©) 2001 Mark Wedel
7# Copyright (©) 2007 Marc Alexander Lehmann 7# Copyright (©) 2007 Marc Alexander Lehmann
8# 8#
9# Deliantra is free software: you can redistribute it and/or modify it under 9# Deliantra is free software: you can redistribute it and/or modify it under
10# the terms of the Affero GNU General Public License as published by the 10# the terms of the Affero GNU General Public License as published by the
11# Free Software Foundation, either version 3 of the License, or (at your 11# Free Software Foundation, either version 3 of the License, or (at your
12# option) any later version. 12# option) any later version.
13# 13#
14# This program is distributed in the hope that it will be useful, 14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of 15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17# GNU General Public License for more details. 17# GNU General Public License for more details.
18# 18#
19# You should have received a copy of the Affero GNU General Public License 19# You should have received a copy of the Affero GNU General Public License
20# and the GNU General Public License along with this program. If not, see 20# and the GNU General Public License along with this program. If not, see
21# <http://www.gnu.org/licenses/>. 21# <http://www.gnu.org/licenses/>.
22# 22#
23# The authors can be reached via e-mail to <support@deliantra.net> 23# The authors can be reached via e-mail to <support@deliantra.net>
24# 24#
25 25
26bin_PROGRAMS = deliantra-server 26bin_PROGRAMS = deliantra-server
27 27
32 apply.C\ 32 apply.C\
33 attack.C\ 33 attack.C\
34 build_map.C\ 34 build_map.C\
35 c_misc.C\ 35 c_misc.C\
36 c_move.C\ 36 c_move.C\
37 c_new.C\
38 c_object.C\ 37 c_object.C\
39 c_party.C\ 38 c_party.C\
40 c_range.C\ 39 c_range.C\
41 c_wiz.C\ 40 c_wiz.C\
42 commands.C\ 41 commands.C\
59 spell_util.C\ 58 spell_util.C\
60 swamp.C\ 59 swamp.C\
61 time.C\ 60 time.C\
62 dynbuf.C\ 61 dynbuf.C\
63 freezethaw.C\ 62 freezethaw.C\
63 quadland.C\
64 cfperl.xs\ 64 cfperl.xs\
65 evthread.C 65 evthread.C
66 66
67SUFFIXES = .xs 67SUFFIXES = .xs
68 68
69EXTRA_DIST = typemap genacc 69EXTRA_DIST = typemap genacc genconst
70 70
71CLEANFILES = const_iv.h perlxsi.c
72
73CONST_SRC = ../include/define.h ../include/spells.h ../include/attack.h \
74 ../include/skills.h ../include/material.h ../include/sounds.h \
75 ../include/object.h ../include/treasure.h ../include/client.h \
76 ../include/logger.h ../include/rmg.h ../include/map.h
77
78const_iv.h: genconst $(CONST_SRC)
79 $(PERL) genconst $(CONST_SRC)
80
71cfperl.C: cfperl.xs genacc typemap 81cfperl.C: cfperl.xs typemap genacc
82cfperl.C: const_iv.h
72cfperl.C: ../include/object.h ../include/client.h ../include/player.h 83cfperl.C: ../include/object.h ../include/client.h ../include/player.h
73cfperl.C: ../include/map.h ../include/living.h ../include/global.h 84cfperl.C: ../include/map.h ../include/living.h ../include/global.h
74cfperl.C: ../include/region.h ../include/cfperl.h ../random_maps/random_map.h 85cfperl.C: ../include/region.h ../include/cfperl.h ../include/rmg.h
86cfperl.C: ../include/define.h
75 87
76.xs.C: typemap 88.xs.C: typemap
77 $(PERL) -MExtUtils::Embed -e xsinit -- -std cf 89 $(PERL) -MExtUtils::Embed -e xsinit -- -std cf
78 PERL="$(PERL)" srcdir="$(srcdir)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -csuffix .C -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap $(srcdir)/typemap -prototypes $(srcdir)/cfperl.xs >$@ 90 PERL="$(PERL)" srcdir="$(srcdir)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -csuffix .C -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap $(srcdir)/typemap -prototypes $(srcdir)/cfperl.xs >$@~ && mv $@~ $@
79 91
80AM_CPPFLAGS = -I$(top_srcdir)/include -DDATADIR=\"$(pkgdatadir)\" -DCONFDIR=\"$(pkgconfdir)\" \ 92AM_CPPFLAGS = -I$(top_srcdir)/include -DDATADIR=\"$(pkgdatadir)\" -DCONFDIR=\"$(pkgconfdir)\" \
81 -DLIBDIR=\"$(pkglibdir)\" -DLOCALDIR=\"$(pkgstatedir)\" \ 93 -DLIBDIR=\"$(pkglibdir)\" -DLOCALDIR=\"$(pkgstatedir)\" \
82 -DPLUGIN_SUFFIX=\".so\" 94 -DPLUGIN_SUFFIX=\".so\"
83 95
84LIBDL= 96LIBDL=
85deliantra_server_LDFLAGS= 97deliantra_server_LDFLAGS=
86deliantra_server_LDADD = ../common/libcross.a ../random_maps/librandom_map.a \ 98deliantra_server_LDADD = \
99 ../common/libcross.a \
100 ../random_maps/librandom_map.a \
87 ../socket/libsocket.a $(LIBDL) $(PERLLIB) 101 ../socket/libsocket.a $(LIBDL) $(PERLLIB)
88 102
89../common/libcross.a: 103../common/libcross.a:
90 ( cd ../common ; $(MAKE) libcross.a ) 104 ( cd ../common ; $(MAKE) libcross.a )
91 105
92../random_maps/librandom_map.a: 106../random_maps/librandom_map.a:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines