1## Process this file with automake to produce Makefile.in
2## A Makefile.in is supplied, in case you do not have automake.
3
4## Copyright (C) 1997-2019 by Henry Kilmer and John Heasley
5## All rights reserved.
6##
7## Please see the file COPYING for the text of the license.
8##
9
10AUTOMAKE_OPTIONS=foreign no-dependencies
11
12@SET_MAKE@
13
14pkgdata_DATA = COPYING CHANGES FAQ README README.lg UPGRADING cloginrc.sample
15EXTRA_DIST = BUGS Todo configure configure.vers install-sh \
16	mkinstalldirs Makefile.in Todo $(pkgdata_DATA)
17#DIST_COMMON =
18
19# '.' is here (and at the beginnging of the macro) so that distclean-recursive
20# will run make distclean in . after the other dirs (preserving Makefile) and
21# mkinstalldirs will create the install destination before descending into
22# the subdirs.
23SUBDIRS = . include etc lib bin man share
24
25# sysconfdir is here because etc/Makefile uses a script to be careful about
26# installing rancid.conf, not over-writing an existing one.
27DIRS2_CREATE=$(DESTDIR)$(prefix) $(DESTDIR)$(sysconfdir)
28if MK_LCLSTATEDIR
29DIRS2_CREATE+=$(DESTDIR)$(localstatedir)
30endif
31install-data-hook:
32	$(mkinstalldirs) $(DIRS2_CREATE);
33
34distclean-local:
35	-rm -rf $(top_srcdir)/autom4te.cache
36