toml/unittest/Makefile

12 lines
90 B
Makefile

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