NetBSD/dist/ntp/Makefile.am

178 lines
4.0 KiB
Makefile
Raw Normal View History

2000-03-29 16:38:44 +04:00
#AUTOMAKE_OPTIONS = util/ansi2knr foreign dist-tarZ no-dependencies
2006-06-11 18:57:12 +04:00
AUTOMAKE_OPTIONS = util/ansi2knr foreign 1.8
2007-01-06 19:04:26 +03:00
ACLOCAL_AMFLAGS= -I m4 -I libopts/m4
2000-03-29 16:38:44 +04:00
2007-01-06 19:04:26 +03:00
NULL=
SUBDIRS=
if NEED_LIBOPTS
SUBDIRS+= libopts
endif
SUBDIRS+= \
scripts \
include \
2003-12-04 19:05:14 +03:00
ElectricFence \
2007-01-06 19:04:26 +03:00
@ARLIB_DIR@ \
libntp \
2000-03-29 16:38:44 +04:00
libparse \
2007-01-06 19:04:26 +03:00
ntpd \
ntpdate \
ntpdc \
ntpq \
2000-03-29 16:38:44 +04:00
parseutil \
adjtimed \
clockstuff \
2007-01-06 19:04:26 +03:00
kernel \
sntp \
util \
$(NULL)
DIST_SUBDIRS= \
scripts \
include \
2003-12-04 19:05:14 +03:00
ElectricFence \
2007-01-06 19:04:26 +03:00
arlib \
libntp \
libopts \
2003-12-04 19:05:14 +03:00
libparse \
2007-01-06 19:04:26 +03:00
ntpd \
ntpdate \
ntpdc \
ntpq \
2003-12-04 19:05:14 +03:00
parseutil \
adjtimed \
clockstuff \
2007-01-06 19:04:26 +03:00
kernel \
sntp \
util \
$(NULL)
DISTCHECK_CONFIGURE_FLAGS= --with-arlib --enable-local-libopts
EXTRA_DIST = \
COPYRIGHT \
ChangeLog \
2007-06-24 19:47:02 +04:00
CommitLog \
CommitLog-4.1.0 \
2007-01-06 19:04:26 +03:00
NEWS \
NOTES.y2kfixes \
README.bk \
README.hackers \
README.patches \
2003-12-04 19:05:14 +03:00
README.refclocks \
2007-01-06 19:04:26 +03:00
README.versions \
TODO \
WHERE-TO-START \
bootstrap \
build \
config.guess \
config.h.in \
config.sub \
dot.emacs \
excludes \
flock-build \
install-sh \
packageinfo.sh \
readme.y2kfixes \
results.y2kfixes \
\
conf \
html \
libisc \
ports \
2006-06-11 18:57:12 +04:00
\
2007-01-06 19:04:26 +03:00
bincheck.mf \
version \
version.m4 \
2006-06-11 18:57:12 +04:00
\
2007-01-06 19:04:26 +03:00
$(NULL)
2003-12-04 19:05:14 +03:00
2006-06-11 18:57:12 +04:00
DISTCLEANFILES = .gcc-warning
2000-04-22 18:51:59 +04:00
2006-06-11 18:57:12 +04:00
#ETAGS_ARGS = $(srcdir)/Makefile.am $(srcdir)/configure.ac
ETAGS_ARGS = Makefile.am configure.ac
2000-03-29 16:38:44 +04:00
# HMS: make ports be the last directory...
2000-04-22 18:51:59 +04:00
# DIST_HOOK_DIRS = conf html scripts ports
2000-03-29 16:38:44 +04:00
2006-06-11 18:57:12 +04:00
# HMS: Keep .gcc-warning first, as that way it gets printed first.
BUILT_SOURCES = .gcc-warning $(srcdir)/COPYRIGHT $(srcdir)/version $(srcdir)/version.m4 $(srcdir)/include/version.def
2000-03-29 16:38:44 +04:00
2003-12-04 19:05:14 +03:00
$(srcdir)/COPYRIGHT: $(srcdir)/html/copyright.html
( echo "This file is automatically generated from html/copyright.html" ; lynx -dump $(srcdir)/html/copyright.html ) > $(srcdir)/COPYRIGHT.new && mv $(srcdir)/COPYRIGHT.new $(srcdir)/COPYRIGHT
# HMS: The next bit is still suboptimal. If bk is present but this NTP
# repo is not a bk repo, we'll get an error message from the prs command.
# Unfortunately, I haven't found the necessary magic to redirect this error
# output to /dev/null under ancient/unique shells like the one Ultrix uses.
# We'll also get an error if srcdir or version is unwritable.
$(srcdir)/version: FRC.version
-(bk version) >/dev/null 2>&1 && \
cd $(srcdir) && \
x=`bk -R prs -hr+ -nd:I: ChangeSet` && \
y=`cat version 2>/dev/null` || true && \
case "$$x" in ''|$$y) ;; *) echo $$x > version ;; esac
2000-03-29 16:38:44 +04:00
2006-06-11 18:57:12 +04:00
$(srcdir)/version.m4: $(srcdir)/packageinfo.sh
cd $(srcdir) && \
./scripts/genver version.m4
$(srcdir)/include/version.def: $(srcdir)/packageinfo.sh
cd $(srcdir) && \
./scripts/genver include/version.def
2000-03-29 16:38:44 +04:00
dist-hook:
2000-04-22 18:51:59 +04:00
@find $(distdir) -type d -name CVS -print | xargs rm -rf
2003-12-04 19:05:14 +03:00
@find $(distdir) -type d -name SCCS -print | xargs rm -rf
@chmod u+w $(distdir)/ports/winnt
@for i in `find $(distdir)/ports/winnt -type f -name '*.ds*' -print`; \
do chmod u+w $$i ; unix2dos $$i $$i; done
2006-06-11 18:57:12 +04:00
.gcc-warning:
2003-12-04 19:05:14 +03:00
@echo "Compiling with GCC now generates lots of new warnings."
@echo " "
@echo "Don't be concerned. They're just warnings."
@echo " "
@echo "Don't send bug reports about the warnings, either."
@echo " "
@echo "Feel free to send patches that fix these warnings, though."
@echo " "
@sleep 1
2007-01-06 19:04:26 +03:00
@touch $@
2007-06-24 19:47:02 +04:00
CommitLog: FRC.CommitLog
2007-01-06 19:04:26 +03:00
cd $(srcdir) \
2007-06-24 19:47:02 +04:00
&& /bin/test -e CommitLog \
-a SCCS/s.ChangeSet -ot CommitLog \
|| scripts/genCommitLog
2000-03-29 16:38:44 +04:00
2003-12-04 19:05:14 +03:00
# HMS: The following seems to be a work-in-progress...
2000-03-29 16:38:44 +04:00
CVO=`$(srcdir)/config.guess`
.buildcvo:
echo "$(CVO)" > .buildcvo
.checkcvo: .buildcvo FRC.checkcvo
@if [ "`cat .buildcvo`" != "$(CVO)" ];then \
echo "This directory was configured for `cat .buildcvo`"; \
echo "but this machine is a $(CVO)"; \
exit 1; \
fi
BHOST=`(hostname || uname -n)`
.buildhost:
echo "$(BHOST)" > .buildhost
.checkhost: .buildhost FRC.checkhost
@if [ "`cat .buildhost`" != "$(BHOST)" ];then \
echo "Built on `cat .buildhost` but this is $(BHOST)"; \
echo " "; \
fi
2007-06-24 19:47:02 +04:00
FRC.CommitLog FRC.distwarn FRC.checkcvo FRC.checkhost FRC.version:
2000-03-29 16:38:44 +04:00
2003-12-04 19:05:14 +03:00
# HMS: what was I trying to do with this?
#dot.emacs: FRC.distwarn