Build system: Break out common.make[.in]
[adns] / Makefile.in
CommitLineData
ae8cc977 1# Makefile[.in] - top-level Makefile
1c957fda 2#
ae8cc977 3# This file is part of adns, which is
26e1c3d6 4# Copyright (C) 1997-2000,2003,2006,2014 Ian Jackson
17cd4f48 5# Copyright (C) 2014 Mark Wooding
ae8cc977 6# Copyright (C) 1999-2000,2003,2006 Tony Finch
7# Copyright (C) 1991 Massachusetts Institute of Technology
8# (See the file INSTALL for full details.)
d942707d 9#
1c957fda 10# This program is free software; you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
7f8bbe29 12# the Free Software Foundation; either version 3, or (at your option)
1c957fda 13# any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
8c09a4c6 21# along with this program; if not, write to the Free Software Foundation.
1c957fda 22
b99e8e9a
IJ
23include ./common.make
24
aa3ffb57 25# Remember to change ADNS_VERSION_STRING in client/client.h too, and
b99e8e9a 26# possibly library soname (MAJOR and MINOR in common.make.in).
1afaf3f3 27DISTVERSION= 1.5.0~~
aa3ffb57 28
9579019a 29srcdir= @srcdir@
30VPATH= @srcdir@
1c957fda 31
48337073 32ENABLE_DYNAMIC= @ENABLE_DYNAMIC@
33ifeq ($(ENABLE_DYNAMIC),elf)
34SUBDIRS_DYNAMIC=dynamic
35else
36SUBDIRS_DYNAMIC=
37endif
38
39SUBDIRS= src $(SUBDIRS_DYNAMIC) client regress
1c957fda 40
9579019a 41all install uninstall clean distclean mostlyclean maintainer-clean distprep:
42 set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
a8ab18db 43 $(MAKE) $@-here
44
df1d1f3a 45all-here install-here uninstall-here distprep-here: README
a8ab18db 46
47clean-here mostlyclean-here:
dd34699e 48 rm -f *~ ./#*# core *.orig *.rej adns-*.tar.gz
f9378031 49 rm -rf dist_tmp web adnshost.txt
a8ab18db 50
51distclean-here maintainer-clean-here: clean-here
a63608e6 52 rm -f settings.make config.cache config.log config.status Makefile
1c957fda 53
9579019a 54install-strip:
55 $(MAKE) INSTALL_PROGRAM_FLAGS=-s
1c957fda 56
a8ab18db 57dist_tmp=dist_tmp/adns-$(DISTVERSION)
5ab2163b 58dist: distprep
a8ab18db 59 rm -rf dist_tmp*
60 mkdir dist_tmp $(dist_tmp)
ef469c94 61 find \( -name .git -o -name dist_tmp* \) -prune -o -type d -print | \
a8ab18db 62 sed -e 's#.*#mkdir -p $(dist_tmp)/&#' | sh
ef469c94 63 find \( -name .git -o -name dist_tmp* \) -prune -o -type f -print | \
a8ab18db 64 sed -e 's#.*#ln & $(dist_tmp)/&#' | sh
5ab2163b 65 $(MAKE) -C dist_tmp/adns-$(DISTVERSION) distclean
a8ab18db 66 cd dist_tmp && tar cf ../$(dist_tmp).tar `basename $(dist_tmp)`
67 gzip -9 $(dist_tmp).tar
68 mv $(dist_tmp).tar.gz .
1c957fda 69
f9378031
IJ
70adnshost.txt: all
71 client/adnshost_s --help >$@.tmp && mv -f $@.tmp $@
72
9579019a 73check: all
74 $(MAKE) -C regress check
cc0a8cd2 75
bef232ae 76README: README.html
2dee2b7a
MW
77 lynx -dump -number_links -cfg=/dev/null $(srcdir)/README.html >README.tmp
78 mv -f README.tmp $(srcdir)/README
df1d1f3a 79
9579019a 80TAGS info dvi:
81 # do nothing
cc1cc02a 82
83.PHONY: install #people with case-insensitive filesystems lose otherwise!