toml/unittest/Makefile
2022-09-06 13:25:41 +02:00

11 lines
90 B
Makefile

CFLAGS = -g -I..
TESTS = t1
all: $(TESTS)
t1: t1.c ../toml.c
clean:
rm -f $(TESTS)