Deleted Added
full compact
Makefile.am (106424) Makefile.am (132451)
1#AUTOMAKE_OPTIONS = util/ansi2knr foreign dist-tarZ no-dependencies
1#AUTOMAKE_OPTIONS = util/ansi2knr foreign dist-tarZ no-dependencies
2AUTOMAKE_OPTIONS = util/ansi2knr foreign
2AUTOMAKE_OPTIONS = util/ansi2knr foreign 1.5
3
4SUBDIRS = \
5 scripts \
6 include \
7 ElectricFence \
3
4SUBDIRS = \
5 scripts \
6 include \
7 ElectricFence \
8 librsaref \
8 @ARLIB_DIR@ \
9 libntp \
10 libparse \
11 ntpd \
12 ntpdate \
13 ntpdc \
14 ntpq \
9 libntp \
10 libparse \
11 ntpd \
12 ntpdate \
13 ntpdc \
14 ntpq \
15 ntptrace \
16 parseutil \
17 adjtimed \
18 clockstuff \
19 kernel \
15 parseutil \
16 adjtimed \
17 clockstuff \
18 kernel \
19 @MAKE_SNTP@ \
20 util
21
20 util
21
22DIST_SUBDIRS= \
23 scripts \
24 include \
25 ElectricFence \
26 arlib \
27 libntp \
28 libparse \
29 ntpd \
30 ntpdate \
31 ntpdc \
32 ntpq \
33 parseutil \
34 adjtimed \
35 clockstuff \
36 kernel \
37 sntp \
38 util
39DISTCHECK_CONFIGURE_FLAGS= --with-arlib --with-sntp
40
22EXTRA_DIST = \
23 COPYRIGHT \
24 ChangeLog \
25 ChangeLog-4.1.0 \
26 NEWS \
27 NOTES.y2kfixes \
28 README.bk \
41EXTRA_DIST = \
42 COPYRIGHT \
43 ChangeLog \
44 ChangeLog-4.1.0 \
45 NEWS \
46 NOTES.y2kfixes \
47 README.bk \
29 README.cvs \
30 README.des \
31 README.hackers \
48 README.hackers \
49 README.patches \
32 README.refclocks \
50 README.refclocks \
33 README.rsa \
34 README.versions \
35 TODO \
36 WHERE-TO-START \
51 README.versions \
52 TODO \
53 WHERE-TO-START \
37 acconfig.h \
38 build \
39 config.guess \
40 config.h.in \
41 config.sub \
42 dot.emacs \
43 excludes \
44 flock-build \
45 install-sh \
54 build \
55 config.guess \
56 config.h.in \
57 config.sub \
58 dot.emacs \
59 excludes \
60 flock-build \
61 install-sh \
46 ntp_update \
47 readme.y2kfixes \
48 results.y2kfixes \
49 conf \
50 html \
62 readme.y2kfixes \
63 results.y2kfixes \
64 conf \
65 html \
66 libisc \
51 ports \
52 version
53
54DISTCLEANFILES = .warning
55
56#ETAGS_ARGS = $(srcdir)/Makefile.am $(srcdir)/configure.in
67 ports \
68 version
69
70DISTCLEANFILES = .warning
71
72#ETAGS_ARGS = $(srcdir)/Makefile.am $(srcdir)/configure.in
57ETAGS_ARGS = Makefile.am configure.in acconfig.h
73ETAGS_ARGS = Makefile.am configure.in
58
59# HMS: make ports be the last directory...
60# DIST_HOOK_DIRS = conf html scripts ports
61
62# HMS: Keep .warning first, as that way it gets printed first.
63BUILT_SOURCES = .warning $(srcdir)/COPYRIGHT $(srcdir)/version
64
74
75# HMS: make ports be the last directory...
76# DIST_HOOK_DIRS = conf html scripts ports
77
78# HMS: Keep .warning first, as that way it gets printed first.
79BUILT_SOURCES = .warning $(srcdir)/COPYRIGHT $(srcdir)/version
80
65$(srcdir)/COPYRIGHT: html/copyright.htm
66 ( echo "This file is automatically generated from html/copyright.htm" ; lynx -dump $(srcdir)/html/copyright.htm ) > $(srcdir)/COPYRIGHT.new && mv $(srcdir)/COPYRIGHT.new $(srcdir)/COPYRIGHT
81$(srcdir)/COPYRIGHT: $(srcdir)/html/copyright.html
82 ( 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
67
68# HMS: The next bit is still suboptimal. If bk is present but this NTP
69# repo is not a bk repo, we'll get an error message from the prs command.
70# Unfortunately, I haven't found the necessary magic to redirect this error
71# output to /dev/null under ancient/unique shells like the one Ultrix uses.
83
84# HMS: The next bit is still suboptimal. If bk is present but this NTP
85# repo is not a bk repo, we'll get an error message from the prs command.
86# Unfortunately, I haven't found the necessary magic to redirect this error
87# output to /dev/null under ancient/unique shells like the one Ultrix uses.
72# We'll also get an error of srcdir or version is unwritable.
88# We'll also get an error if srcdir or version is unwritable.
73$(srcdir)/version: FRC.version
74 -(bk version) >/dev/null 2>&1 && \
75 cd $(srcdir) && \
76 x=`bk -R prs -hr+ -nd:I: ChangeSet` && \
89$(srcdir)/version: FRC.version
90 -(bk version) >/dev/null 2>&1 && \
91 cd $(srcdir) && \
92 x=`bk -R prs -hr+ -nd:I: ChangeSet` && \
77 case "$$x" in '') ;; *) echo $$x > version ;; esac
93 y=`cat version 2>/dev/null` || true && \
94 case "$$x" in ''|$$y) ;; *) echo $$x > version ;; esac
78
79dist-hook:
80 @find $(distdir) -type d -name CVS -print | xargs rm -rf
81 @find $(distdir) -type d -name SCCS -print | xargs rm -rf
95
96dist-hook:
97 @find $(distdir) -type d -name CVS -print | xargs rm -rf
98 @find $(distdir) -type d -name SCCS -print | xargs rm -rf
99 @chmod u+w $(distdir)/ports/winnt
82 @for i in `find $(distdir)/ports/winnt -type f -name '*.ds*' -print`; \
83 do chmod u+w $$i ; unix2dos $$i $$i; done
84
85.warning:
86 @echo "Compiling with GCC now generates lots of new warnings."
87 @echo " "
88 @echo "Don't be concerned. They're just warnings."
89 @echo " "

--- 36 unchanged lines hidden ---
100 @for i in `find $(distdir)/ports/winnt -type f -name '*.ds*' -print`; \
101 do chmod u+w $$i ; unix2dos $$i $$i; done
102
103.warning:
104 @echo "Compiling with GCC now generates lots of new warnings."
105 @echo " "
106 @echo "Don't be concerned. They're just warnings."
107 @echo " "

--- 36 unchanged lines hidden ---