changelog: Reorder slightly
[adns] / Makefile.in
1 # Makefile[.in] - top-level Makefile
2 #
3 # This file is part of adns, which is
4 # Copyright (C) 1997-2000,2003,2006,2014 Ian Jackson
5 # Copyright (C) 2014 Mark Wooding
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.)
9 #
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
12 # the Free Software Foundation; either version 3, or (at your option)
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
21 # along with this program; if not, write to the Free Software Foundation.
22
23 # Remember to change ADNS_VERSION_STRING in client/client.h too, and
24 # possibly library soname (MAJOR and MINOR in settings.make.in).
25 DISTVERSION= 1.5.0~~
26
27 srcdir= @srcdir@
28 VPATH= @srcdir@
29
30 ENABLE_DYNAMIC= @ENABLE_DYNAMIC@
31 ifeq ($(ENABLE_DYNAMIC),elf)
32 SUBDIRS_DYNAMIC=dynamic
33 else
34 SUBDIRS_DYNAMIC=
35 endif
36
37 SUBDIRS= src $(SUBDIRS_DYNAMIC) client regress
38
39 all install uninstall clean distclean mostlyclean maintainer-clean distprep:
40 set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
41 $(MAKE) $@-here
42
43 all-here install-here uninstall-here distprep-here: README
44
45 clean-here mostlyclean-here:
46 rm -f *~ ./#*# core *.orig *.rej adns-*.tar.gz
47 rm -rf dist_tmp
48
49 distclean-here maintainer-clean-here: clean-here
50 rm -f settings.make config.cache config.log config.status Makefile
51
52 install-strip:
53 $(MAKE) INSTALL_PROGRAM_FLAGS=-s
54
55 dist_tmp=dist_tmp/adns-$(DISTVERSION)
56 dist: distprep
57 rm -rf dist_tmp*
58 mkdir dist_tmp $(dist_tmp)
59 find \( -name .git -o -name dist_tmp* \) -prune -o -type d -print | \
60 sed -e 's#.*#mkdir -p $(dist_tmp)/&#' | sh
61 find \( -name .git -o -name dist_tmp* \) -prune -o -type f -print | \
62 sed -e 's#.*#ln & $(dist_tmp)/&#' | sh
63 $(MAKE) -C dist_tmp/adns-$(DISTVERSION) distclean
64 cd dist_tmp && tar cf ../$(dist_tmp).tar `basename $(dist_tmp)`
65 gzip -9 $(dist_tmp).tar
66 mv $(dist_tmp).tar.gz .
67
68 check: all
69 $(MAKE) -C regress check
70
71 README: README.html
72 lynx -dump -number_links -cfg=/dev/null $(srcdir)/README.html >README.tmp
73 mv -f README.tmp $(srcdir)/README
74
75 TAGS info dvi:
76 # do nothing
77
78 .PHONY: install #people with case-insensitive filesystems lose otherwise!