dns/_examples/Makefile

16 lines
185 B
Makefile

EXAMPLES=mx \
chaos \
key2ds \
axfr \
reflect \
q \
funkensturm \
ns \
all:
for i in $(EXAMPLES); do gomake -C $$i; done
clean:
for i in $(EXAMPLES); do gomake -C $$i clean; done