OpenWrt_Luci_Lua/1_6.h12_dev/ntp/timesync/Makefile

21 lines
227 B
Makefile
Raw Normal View History

2015-07-08 11:16:28 +00:00
.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