Add Makefile

This commit is contained in:
Eric Fischer 2014-02-05 22:04:58 -08:00
parent 7641459278
commit 71981fc49e

7
Makefile Normal file
View File

@ -0,0 +1,7 @@
all: jsoncat
jsoncat: jsoncat.o jsonpull.o
cc -g -Wall -o $@ $^
%.o: %.c
cc -g -Wall -c $^