Typo.
[adns] / Makefile.in
1 # Makefile - top-level Makefile
2 #
3 # This file is part of adns, which is Copyright (C) 1997, 1998 Ian Jackson
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software Foundation,
17 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 DISTVERSION= 0.1
20
21 srcdir= @srcdir@
22 VPATH= @srcdir@
23
24 SUBDIRS= src dynamic client regress
25
26 all install uninstall clean distclean mostlyclean maintainer-clean distprep:
27 set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
28 $(MAKE) $@-here
29
30 all-here install-here uninstall-here distprep-here:
31
32 clean-here mostlyclean-here:
33 rm -f *~ ./#*# core *.orig *.rej Makefile
34
35 distclean-here maintainer-clean-here: clean-here
36 rm -f settings.make config.h config.cache config.log config.status
37
38 install-strip:
39 $(MAKE) INSTALL_PROGRAM_FLAGS=-s
40
41 dist_tmp=dist_tmp/adns-$(DISTVERSION)
42 dist: distprep
43 rm -rf dist_tmp*
44 mkdir dist_tmp $(dist_tmp)
45 find \( -name CVS -o -name dist_tmp* \) -prune -o -type d -print | \
46 sed -e 's#.*#mkdir -p $(dist_tmp)/&#' | sh
47 find \( -name CVS -o -name dist_tmp* \) -prune -o -type f -print | \
48 sed -e 's#.*#ln & $(dist_tmp)/&#' | sh
49 cd dist_tmp && tar cf ../$(dist_tmp).tar `basename $(dist_tmp)`
50 gzip -9 $(dist_tmp).tar
51 mv $(dist_tmp).tar.gz .
52
53 check: all
54 $(MAKE) -C regress check
55
56 TAGS info dvi:
57 # do nothing