summaryrefslogtreecommitdiff
path: root/tools/dnssec/Makefile
blob: 700922016b75b77fb6acdc80b5fffa6a34f74f83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CFLAGS = -Wall -g -std=c99
CFLAGS_PEDANTIC = -pedantic -Werror -Wextra

all: dns-net2wire dns-wire2text

dns-net2wire: dns-net2wire.c
	$(CC) $(CFLAGS) -o $@ -lgetdns -lgetdns_ext_event -levent $<
dns-wire2text: dns-wire2text.c
	$(CC) $(CFLAGS) $(CFLAGS_PEDANTIC) -o $@ -lgetdns -lgetdns_ext_event -levent $<

net2wire: net2wire.c
	$(CC) $(CFLAGS) -I ~/usr/include -L ~/usr/lib -o $@ -lgetdns -lgetdns_ext_event -levent $<