mirror of
https://github.com/miekg/dns.git
synced 2025-08-21 00:41:01 +02:00
12 lines
150 B
Makefile
12 lines
150 B
Makefile
.PHONY: ex
|
|
EXAMPLES=mx \
|
|
chaos \
|
|
key2ds \
|
|
axfr \
|
|
fp \
|
|
reflect \
|
|
q \
|
|
|
|
ex:
|
|
for i in $(EXAMPLES); do echo $$i; (cd $$i && go install); done
|