simple/dns/GNUmakefile

40 lines
508 B
Makefile
Raw Normal View History

2001-07-03 22:00:49 +02:00
include GNUmakevars
2002-08-14 20:44:23 +02:00
all: gethostbyname fqdn
install: \
$(BINDIR)/gethostbyname \
$(BINDIR)/axfr \
$(BINDIR)/fqdn \
$(BINDIR)/minnet \
2002-08-14 20:44:23 +02:00
2001-07-03 22:00:49 +02:00
clean:
rm -f *.bak *.o core gethostbyname
distclean: clean
rm -f *.d
cfg/%:
$(MAKE) -C cfg all
gethostbyname: gethostbyname.o hstrerror.o
2002-08-14 20:44:23 +02:00
fqdn: fqdn.o hstrerror.o
hstrerror.o: cfg/have_hstrerror.h
2002-08-14 20:44:23 +02:00
axfr:
%: %.pl
cp $< $@
chmod +x $@
GNUmakevars: GNUmakevars.sh
sh ./$^ > $@
GNUmakerules: GNUmakerules.sh
sh ./$^ > $@
include GNUmakerules
2001-07-03 22:00:49 +02:00
-include *.d