diff options
author | Harald Welte <laforge@gnumonks.org> | 2010-08-12 18:29:31 +0800 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2010-08-12 18:29:31 +0800 |
commit | 4d4a06afcbc6ca1a2056ab2e4973b454eba59de3 (patch) | |
tree | 548e0ffbf36d7491f98c6c901bc094bce2ec534e /easytool/Makefile | |
parent | e59e499029c05a68156cdf9d61ceac54e6813d3a (diff) |
split easytool into multiple files, add database of MRT station names
Diffstat (limited to 'easytool/Makefile')
-rw-r--r-- | easytool/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
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 $^ |