dns/Makefile

38 lines
557 B
Makefile
Raw Normal View History

2010-08-04 07:57:59 +10:00
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
2010-12-31 02:49:42 +11:00
.PHONY: examples _examples
2010-08-04 07:57:59 +10:00
include $(GOROOT)/src/Make.inc
2010-08-04 07:57:59 +10:00
TARG=dns
GOFILES=\
2011-03-31 20:37:11 +11:00
clientconfig.go\
2011-04-13 05:44:56 +10:00
client.go\
2011-03-16 22:19:15 +11:00
defaults.go\
dns.go\
dnssec.go\
2011-03-16 09:12:20 +11:00
edns.go\
2011-01-11 02:10:15 +11:00
keygen.go\
kscan.go\
2012-01-11 01:55:52 +11:00
labels.go\
2011-03-16 09:12:20 +11:00
msg.go\
nsec3.go \
2011-08-08 22:09:05 +10:00
rawmsg.go \
2011-12-15 23:04:40 +11:00
server.go \
2011-03-16 09:12:20 +11:00
tsig.go\
types.go\
2011-08-22 20:52:13 +10:00
update.go\
2011-04-18 17:58:15 +10:00
xfr.go\
2011-12-14 19:26:31 +11:00
zscan.go\
zscan_rr.go\
include $(GOROOT)/src/Make.pkg
2010-12-31 02:49:42 +11:00
_examples:
gomake -C _examples
examples:
gomake -C _examples