diff options
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 $^ |