From 4d4a06afcbc6ca1a2056ab2e4973b454eba59de3 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Thu, 12 Aug 2010 18:29:31 +0800 Subject: split easytool into multiple files, add database of MRT station names --- easytool/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 easytool/Makefile (limited to 'easytool/Makefile') diff --git a/easytool/Makefile b/easytool/Makefile new file mode 100644 index 0000000..fc5a5e1 --- /dev/null +++ b/easytool/Makefile @@ -0,0 +1,13 @@ + +CFLAGS=-g -Wall + +all: easytool + +clean: + @rm -f *.o easytool + +easytool: easytool.o data.o utils.o + $(CC) $(LDFLAGS) -o $@ $^ + +%.o: %.c + $(CC) $(CFLAGS) -o $@ -c $^ -- cgit v1.2.3