parson/Makefile
2012-12-02 18:16:12 +01:00

11 lines
173 B
Makefile

CFLAGS = -O0 -g -Wall -Wextra -std=c89 -pedantic-errors
all: test
.PHONY: test
test: tests.c parson.c
$(CC) $(CFLAGS) -o $@ tests.c parson.c
./$@
clean:
rm -f test *.o