
Separates some functions into their own files separates some big functions in to smaller ones to help improve the code cleans up some stuff
5 lines
83 B
Makefile
5 lines
83 B
Makefile
all: main.c
|
|
gcc main.c json.c curl.c -lcurl -lcjson -o isbn -Wall
|
|
clean:
|
|
rm isbn
|