dns/_examples/Makefile
2011-03-21 23:00:48 +01:00

13 lines
170 B
Makefile

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