diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0589c88 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +all: jsoncat + +jsoncat: jsoncat.o jsonpull.o + cc -g -Wall -o $@ $^ + +%.o: %.c + cc -g -Wall -c $^