1
0
mirror of https://github.com/kgabis/parson.git synced 2025-01-14 06:12:54 +08:00
parson/Makefile
2012-12-02 18:40:13 +01:00

12 lines
182 B
Makefile

CC = gcc
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