Workaround makefile

This commit is contained in:
rafagafe 2018-11-15 01:08:21 +01:00
parent a087bcabb5
commit 03ca43a55f

View File

@ -1,3 +1,5 @@
CC = gcc
CFLAGS = -std=c99 -Wall -pedantic
build: example-01.exe example-02.exe example-03.exe
@ -22,18 +24,3 @@ example-03.exe: example-03.o tiny-json.o
test.exe: tests.o tiny-json.o
gcc $(CFLAGS) -o $@ $^
tiny-json.o: tiny-json.c tiny-json.h
gcc $(CFLAGS) -c tiny-json.c
example-01.o: example-01.c tiny-json.h
gcc $(CFLAGS) -c example-01.c
example-02.o: example-02.c tiny-json.h
gcc $(CFLAGS) -c example-02.c
example-03.o: example-03.c tiny-json.h
gcc $(CFLAGS) -c example-03.c
tests.o: tests.c tiny-json.h
gcc $(CFLAGS) -c tests.c