aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 58b591ab3c59e9d7d1f5192fb718416fe333ee27 (about) (plain)
1
2
3
4
5
6
7
8
9
CC ?= gcc
CFLAGS = -std=c90 -Wall -Werror
LDFLAGS = -lunbound

0tDNS : build/0tDNS.o
	$(CC) $^ $(LDFLAGS) -o $@

build/0tDNS.o : src/0tDNS.c
	gcc $(CFLAGS) $^ -c -o $@