ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/Makefile.am
Revision: 1.53
Committed: Thu Nov 17 23:28:05 2016 UTC (7 years, 5 months ago) by root
Branch: MAIN
CVS Tags: HEAD
Changes since 1.52: +0 -0 lines
State: FILE REMOVED
Log Message:
*** empty log message ***

File Contents

# Content
1 #
2 # This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 #
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
6 # Copyright (©) 2001 Mark Wedel
7 # Copyright (©) 2007 Marc Alexander Lehmann
8 #
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
11 # Free Software Foundation, either version 3 of the License, or (at your
12 # option) any later version.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
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
21 # <http://www.gnu.org/licenses/>.
22 #
23 # The authors can be reached via e-mail to <support@deliantra.net>
24 #
25
26 bin_PROGRAMS = deliantra-server
27
28 MAINTAINERCLEANFILES = Makefile.in
29
30 deliantra_server_SOURCES = \
31 alchemy.C\
32 apply.C\
33 attack.C\
34 build_map.C\
35 c_misc.C\
36 c_move.C\
37 c_object.C\
38 c_party.C\
39 c_range.C\
40 c_wiz.C\
41 commands.C\
42 disease.C\
43 egoitem.C \
44 gods.C\
45 init.C\
46 main.C\
47 monster.C\
48 move.C\
49 pets.C\
50 player.C\
51 resurrection.C\
52 rune.C\
53 shop.C\
54 skills.C\
55 skill_util.C\
56 spell_attack.C\
57 spell_effect.C\
58 spell_util.C\
59 swamp.C\
60 time.C\
61 dynbuf.C\
62 freezethaw.C\
63 quadland.C\
64 cfperl.xs\
65 evthread.C
66
67 SUFFIXES = .xs
68
69 EXTRA_DIST = typemap genacc genconst
70
71 CLEANFILES = const_iv.h perlxsi.c
72
73 CONST_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
78 const_iv.h: genconst $(CONST_SRC)
79 $(PERL) genconst $(CONST_SRC)
80
81 cfperl.C: cfperl.xs typemap genacc
82 cfperl.C: const_iv.h
83 cfperl.C: ../include/object.h ../include/client.h ../include/player.h
84 cfperl.C: ../include/map.h ../include/living.h ../include/global.h
85 cfperl.C: ../include/region.h ../include/cfperl.h ../include/rmg.h
86 cfperl.C: ../include/define.h
87
88 .xs.C: typemap
89 $(PERL) -MExtUtils::Embed -e xsinit -- -std cf
90 PERL="$(PERL)" srcdir="$(srcdir)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -csuffix .C -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap $(srcdir)/typemap -prototypes $(srcdir)/cfperl.xs >$@~ && mv $@~ $@
91
92 AM_CPPFLAGS = -I$(top_srcdir)/include -DDATADIR=\"$(pkgdatadir)\" -DCONFDIR=\"$(pkgconfdir)\" \
93 -DLIBDIR=\"$(pkglibdir)\" -DLOCALDIR=\"$(pkgstatedir)\" \
94 -DPLUGIN_SUFFIX=\".so\"
95
96 LIBDL=
97 deliantra_server_LDFLAGS=
98 deliantra_server_LDADD = \
99 ../common/libcross.a \
100 ../random_maps/librandom_map.a \
101 ../socket/libsocket.a $(LIBDL) $(PERLLIB)
102
103 ../common/libcross.a:
104 ( cd ../common ; $(MAKE) libcross.a )
105
106 ../random_maps/librandom_map.a:
107 ( cd ../random_maps ; $(MAKE) librandom_map.a )
108
109 ../socket/libsocket.a:
110 ( cd ../socket ; $(MAKE) libsocket.a )
111
112