OpenWrt_Luci_Lua/1_6.h12_dev/ntp/timesync/Makefile
2015-07-08 19:16:28 +08:00

21 lines
227 B
Makefile

.PHONY: all clean tags
CFLAGS:=-Wall -O2
all: client server
server: server.c
$(CC) $(CFLAGS) $^ -o $@
strip -s $@
client: client.c
$(CC) $(CFLAGS) $^ -o $@
strip -s $@
tags:
ctags -R .
clean:
-rm *.o client server