1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
# $Id: Makefile.am 17707 2008-06-21 20:52:14Z atupone $
AUTOMAKE_OPTIONS = 1.6 dist-zip dist-bzip2
ACLOCAL_AMFLAGS = -I m4
traversal_dirs = \
data \
include \
man \
package \
src
if BUILD_PLUGINS
PLUGINS=plugins
else
PLUGINS=
endif
SUBDIRS = \
$(traversal_dirs) \
$(PLUGINS)
DIST_SUBDIRS = \
$(traversal_dirs) \
Dev-C++ \
debian \
m4 \
misc \
plugins \
tools \
win32 \
BZFlag.xcodeproj
EXTRA_DIST = \
autogen.sh \
authors.xml \
BUGS \
bzflag.info \
bzflag.lsm \
bzflag.spec \
DEVINFO \
PORTING \
README.BeOS \
README.DEVC++ \
README.IRIX \
README.Linux \
README.MINGW32 \
README.MacOSX \
README.SDL \
README.SOLARIS \
README.UNIX \
README.WIN32 \
README.XMINGW \
RELNOTES
MAINTAINERCLEANFILES = \
aclocal.m4 \
configure \
bzflag.info \
bzflag.spec \
INSTALL \
Makefile.in
.PHONY: package debian-svn debian-release
package:
cd package && $(MAKE) targets
debian-svn: dist
-rm -rf $(distdir)
GZIP=$(GZIP_ENV) $(AMTAR)$(TAR) zxf $(distdir).tar.gz
(cd $(distdir) && debian/buildsnap svn)
debian-release: debian/changelog dist
-rm -rf $(distdir)
GZIP=$(GZIP_ENV) $(AMTAR)$(TAR) zxf $(distdir).tar.gz
cp debian/changelog $(distdir)/debian/
(cd $(distdir) && debian/buildsnap release)
|