Files
smartdns/Makefile
2018-04-22 23:14:26 +08:00

15 lines
193 B
Makefile
Executable File

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)