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.47 by root, Fri Apr 22 06:10:33 2011 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 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
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\
64 cfperl.xs\ 63 cfperl.xs\
65 evthread.C 64 evthread.C
66 65
67SUFFIXES = .xs 66SUFFIXES = .xs
68 67
69EXTRA_DIST = typemap genacc 68EXTRA_DIST = typemap genacc genconst
70 69
70CLEANFILES = const_iv.h perlxsi.c
71
72CONST_SRC = ../include/define.h ../include/spells.h ../include/attack.h \
73 ../include/skills.h ../include/material.h ../include/sounds.h \
74 ../include/object.h ../include/treasure.h ../include/client.h \
75 ../include/logger.h ../include/rmg.h ../include/map.h
76
77const_iv.h: genconst $(CONST_SRC)
78 $(PERL) genconst $(CONST_SRC)
79
71cfperl.C: cfperl.xs genacc typemap 80cfperl.C: cfperl.xs typemap genacc
81cfperl.C: const_iv.h
72cfperl.C: ../include/object.h ../include/client.h ../include/player.h 82cfperl.C: ../include/object.h ../include/client.h ../include/player.h
73cfperl.C: ../include/map.h ../include/living.h ../include/global.h 83cfperl.C: ../include/map.h ../include/living.h ../include/global.h
74cfperl.C: ../include/region.h ../include/cfperl.h ../random_maps/random_map.h 84cfperl.C: ../include/region.h ../include/cfperl.h ../include/rmg.h
85cfperl.C: ../include/define.h
75 86
76.xs.C: typemap 87.xs.C: typemap
77 $(PERL) -MExtUtils::Embed -e xsinit -- -std cf 88 $(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 >$@ 89 PERL="$(PERL)" srcdir="$(srcdir)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -csuffix .C -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap $(srcdir)/typemap -prototypes $(srcdir)/cfperl.xs >$@~ && mv $@~ $@
79 90
80AM_CPPFLAGS = -I$(top_srcdir)/include -DDATADIR=\"$(pkgdatadir)\" -DCONFDIR=\"$(pkgconfdir)\" \ 91AM_CPPFLAGS = -I$(top_srcdir)/include -DDATADIR=\"$(pkgdatadir)\" -DCONFDIR=\"$(pkgconfdir)\" \
81 -DLIBDIR=\"$(pkglibdir)\" -DLOCALDIR=\"$(pkgstatedir)\" \ 92 -DLIBDIR=\"$(pkglibdir)\" -DLOCALDIR=\"$(pkgstatedir)\" \
82 -DPLUGIN_SUFFIX=\".so\" 93 -DPLUGIN_SUFFIX=\".so\"
83 94
84LIBDL= 95LIBDL=
85deliantra_server_LDFLAGS= 96deliantra_server_LDFLAGS=
86deliantra_server_LDADD = ../common/libcross.a ../random_maps/librandom_map.a \ 97deliantra_server_LDADD = \
98 ../common/libcross.a \
99 ../random_maps/librandom_map.a \
87 ../socket/libsocket.a $(LIBDL) $(PERLLIB) 100 ../socket/libsocket.a $(LIBDL) $(PERLLIB)
88 101
89../common/libcross.a: 102../common/libcross.a:
90 ( cd ../common ; $(MAKE) libcross.a ) 103 ( cd ../common ; $(MAKE) libcross.a )
91 104
92../random_maps/librandom_map.a: 105../random_maps/librandom_map.a:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines