branch | hs12 |
changeset 77 | 35905799cfd1 |
parent 76 | 7c48ae30987c |
child 78 | bb780a686eb6 |
76:7c48ae30987c | 77:35905799cfd1 |
---|---|
1 DESTDIR = |
|
2 |
|
3 prefix = /usr/local |
|
4 bindir = ${prefix}/bin |
|
5 sbindir = ${prefix}/sbin |
|
6 libdir = ${prefix}/lib/dnstools |
|
7 sysconfdir = /etc/dnstools |
|
8 |
|
9 |
|
10 ALL = zone-ls zone-mk zone-rm \ |
|
11 update-serial \ |
|
12 dnssec-keytool |
|
13 |
|
14 CLEANFILES = $(ALL) |
|
15 |
|
16 .PHONY: all clean distclean install |
|
17 |
|
18 all: $(ALL) |
|
19 |
|
20 clean: |
|
21 |
|
22 distclean: clean |
|
23 -rm -f $(CLEANFILES) |
|
24 |
|
25 |
|
26 %: %.pl |
|
27 @perl -c $< |
|
28 @cp -f $< $@ |
|
29 @chmod a+x-w $@ |