initial commit

This commit is contained in:
Nick Peng
2018-04-22 23:14:26 +08:00
parent b82bf516e2
commit c6af293927
15 changed files with 3432 additions and 0 deletions

15
Makefile Executable file
View File

@@ -0,0 +1,15 @@
BIN=smartdns
OBJS=smartdns.o fast_ping.o
CFLAGS=-g -O0
CFLAGS=-Iinclude
.PHONY: all
all: $(BIN)
$(BIN) : $(OBJS)
$(CC) $(OBJS) -o $@ -lpthread
clean:
$(RM) $(OBJS) $(BIN)