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

Comparing deliantra/server/Makefile.am (file contents):
Revision 1.34 by root, Fri Nov 18 03:53:34 2016 UTC vs.
Revision 1.38 by root, Sat Nov 17 23:39:59 2018 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 (©) 2017,2018 Marc Alexander Lehmann / the Deliantra team
4# Copyright (©) 2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 5# Copyright (©) 2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5# Copyright (©) 2001 Mark Wedel & Crossfire Development Team 6# Copyright (©) 2001 Mark Wedel & Crossfire Development Team
6# Copyright (©) 1992 Frank Tore Johansen 7# Copyright (©) 1992 Frank Tore Johansen
7# 8#
8# 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
24 25
25pkgstatedir = @pkgstatedir@ 26pkgstatedir = @pkgstatedir@
26pkgconfdir = @pkgconfdir@ 27pkgconfdir = @pkgconfdir@
27PERL = @PERL@ 28PERL = @PERL@
28 29
29SUBDIRS = include lib 30SUBDIRS = lib
30 31
31EXTRA_DIST = AUTHORS Changes COPYING.GNU COPYING.Affero autogen.sh TODO \ 32EXTRA_DIST = AUTHORS Changes COPYING.GNU COPYING.Affero autogen.sh TODO \
32 common/README \ 33 common/README \
33 socket/README \ 34 socket/README \
34 random_maps/Notes \ 35 random_maps/Notes \
35 server/typemap server/genacc server/genconst \ 36 server/typemap server/genacc server/genconst \
36 utils/metaserver.pl.in utils/player_dl.pl.in utils/player_dl.html utils/cfutil.in \ 37 utils/metaserver.pl.in utils/player_dl.pl.in utils/player_dl.html utils/cfutil.in \
37 doc/historic doc/development \ 38 doc/historic doc/development \
38 ext/*.pm ext/*.ext 39 ext/*.pm ext/*.ext \
40 include/event2inc include/genkeywords include/callback.pl
39 41
40CLEANFILES = server/const_iv.h server/perlxsi.c 42CLEANFILES = server/const_iv.h server/perlxsi.c
41 43
42MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure Makefile utils/cfutil utils/Makefile.in 44MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure Makefile \
45 utils/cfutil utils/Makefile.in \
46 include/keyword.h include/kw_hash.h
43 47
44DISTCHECK_CONFIGURE_FLAGS = --localstatedir=$$dc_install_base/var --mandir=$$dc_install_base/man 48DISTCHECK_CONFIGURE_FLAGS = --localstatedir=$$dc_install_base/var --mandir=$$dc_install_base/man
45 49
46AM_CPPFLAGS = -I$(top_srcdir)/include -DDATADIR=\"$(pkgdatadir)\" -DCONFDIR=\"$(pkgconfdir)\" \ 50AM_CPPFLAGS = -I$(top_srcdir)/include -DDATADIR=\"$(pkgdatadir)\" -DCONFDIR=\"$(pkgconfdir)\" \
47 -DLIBDIR=\"$(pkglibdir)\" -DLOCALDIR=\"$(pkgstatedir)\" \ 51 -DLIBDIR=\"$(pkglibdir)\" -DLOCALDIR=\"$(pkgstatedir)\" \
54 58
55############################################################################# 59#############################################################################
56# server/, socket/, common/, random_maps/ 60# server/, socket/, common/, random_maps/
57 61
58server_deliantra_server_LDFLAGS= 62server_deliantra_server_LDFLAGS=
59server_deliantra_server_LDADD = $(LIBDL) $(PERLLIB) 63server_deliantra_server_LDADD = $(LIBDL) $(PERLLIB) $(EXTRA_LDADD)
60 64
61server_deliantra_server_SOURCES = \ 65server_deliantra_server_SOURCES = \
62 socket/image.C \ 66 socket/image.C \
63 socket/info.C \ 67 socket/info.C \
64 socket/init.C \ 68 socket/init.C \
218 for i in *.pm *.ext; do \ 222 for i in *.pm *.ext; do \
219 rm -f $(DESTDIR)$(pkgdatadir)/ext/"$$i"; \ 223 rm -f $(DESTDIR)$(pkgdatadir)/ext/"$$i"; \
220 done 224 done
221 225
222############################################################################# 226#############################################################################
227# include/
228
229noinst_HEADERS = \
230 include/devel.h include/libproto.h include/sounds.h include/attack.h \
231 include/config.h include/living.h include/player.h include/slotinc.h \
232 include/define.h include/race.h include/material.h include/spells.h include/rproto.h \
233 include/face.h include/logger.h include/sproto.h include/region.h include/rmg.h \
234 include/artifact.h include/map.h include/recipe.h include/treasure.h include/noise.h \
235 include/global.h include/client.h include/path.h include/shstr.h include/tod.h \
236 include/god.h include/network.h include/crc.h include/shstrinc.h include/layout.h \
237 include/book.h include/includes.h include/object.h include/skills.h include/sockproto.h \
238 include/cfperl.h include/eventinc.h include/attackinc.h include/compiler.h include/rng.h \
239 include/kw_hash.h include/keyword.h include/traits.h include/dynbuf.h include/util.h \
240 include/skillinc.h include/callback.h include/evthread.h include/freezethaw.h include/quadland.h
241
242BUILT_SOURCES = include/eventinc.h include/keyword.h include/kw_hash.h
243
244include/eventinc.h: pod/events.pod include/event2inc
245 $(PERL) $(srcdir)/include/event2inc $< >$@
246
247include/keyword.h: include/genkeywords
248 $(PERL) $(srcdir)/include/genkeywords GPERF '$(GPERF)'
249
250include/kw_hash.h: include/keyword.h
251
252
253#############################################################################
223 254
224tags: ctags 255tags: ctags
225 256

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines