1#AUTOMAKE_OPTIONS = ../util/ansi2knr no-dependencies 2AUTOMAKE_OPTIONS = ../util/ansi2knr 3bin_PROGRAMS= ntpdc 4EXTRA_PROGRAMS= ntpdc-layout 5EXTRA_DATA= check-layout 6BUILT_SOURCES= maybe-layout 7INCLUDES= -I$(top_srcdir)/include 8# LDADD might need RESLIB and ADJLIB 9ntpdc_LDADD= version.o ../libntp/libntp.a @READLINE_LIBS@ 10# ntpdc-layout doesn't need any additional libraries at all 11ntpdc_layout_LDADD= 12DISTCLEANFILES= .version version.c 13CLEANFILES= check-layout layout.here nl.c ntpdc-layout 14noinst_HEADERS= ntpdc.h 15EXTRA_DIST= nl_in.c nl.pl layout.std 16ETAGS_ARGS= Makefile.am 17 18ntpdc_SOURCES = ntpdc.c ntpdc_ops.c 19 20maybe-layout: 21 @case "${PATH_PERL}" in \ 22 /*) ${MAKE} check-layout ;; \ 23 esac 24 25ntpdc-layout.o: nl.c 26 27layout.here: ntpdc-layout 28 ./ntpdc-layout > $@ 29 30check-layout: ntpdc-layout layout.std layout.here 31 cmp $(srcdir)/layout.std layout.here && echo stamp > $@ 32 33$(PROGRAMS): $(LDADD) 34 35../libntp/libntp.a: 36 cd ../libntp && $(MAKE) 37 38version.o: $(ntpdc_OBJECTS) ../libntp/libntp.a Makefile $(top_srcdir)/version 39 env CSET=`cat $(top_srcdir)/version` $(top_builddir)/scripts/mkver ntpdc 40 $(COMPILE) -c version.c 41 42# I ran nl_in.c (attached, to be installed into ntpdc) through 43# $(CC) -E nl_in.c | nl.pl > nl.c 44nl.c: nl_in.c nl.pl 45 $(CC) -E $(DEFAULT_INCLUDES) $(INCLUDES) $(CPPFLAGS) $(srcdir)/nl_in.c | ./nl.pl > nl.c 46