Files
hello-dns/tdns/Makefile

17 lines
374 B
Makefile
Raw Normal View History

2018-04-03 13:18:37 +02:00
CXXFLAGS:=-std=gnu++14 -Wall -O2 -MMD -MP -ggdb -Iext/simplesocket -pthread
2018-04-01 18:31:41 +02:00
PROGRAMS = tdns
all: $(PROGRAMS)
clean:
rm -f *~ *.o *.d test $(PROGRAMS)
#check: mtests
# ./mtests
-include *.d
2018-04-09 17:46:31 +02:00
tdns: tdns.o dns-types.o dns-storage.o dnsmessages.o ext/simplesocket/comboaddress.o ext/simplesocket/sclasses.o ext/simplesocket/swrappers.o
2018-04-03 13:18:37 +02:00
g++ -std=gnu++14 $^ -o $@ -pthread