mirror of
https://github.com/kgabis/parson.git
synced 2024-11-24 06:05:29 +00:00
11 lines
173 B
Makefile
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
|