dns/Makefile

14 lines
172 B
Makefile
Raw Normal View History

2012-02-05 20:46:55 +11:00
.PHONY: examples
2012-02-05 20:51:20 +11:00
EXAMPLES=mx \
chaos \
key2ds \
axfr \
fp \
reflect \
q \
funkensturm \
examples:
2012-02-05 20:51:20 +11:00
for i in $(EXAMPLES); do go build dns/examples/$$i; done