mirror of
https://github.com/kgabis/parson.git
synced 2025-01-14 06:12:54 +08:00
12 lines
182 B
Makefile
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
|