57fe5e8946
this integrates https://github.com/cktan/tomlc99 into the repo as a dependency
12 lines
90 B
Makefile
12 lines
90 B
Makefile
CFLAGS = -g -I..
|
|
|
|
TESTS = t1
|
|
|
|
all: $(TESTS)
|
|
|
|
t1: t1.c ../toml.c
|
|
|
|
clean:
|
|
rm -f $(TESTS)
|
|
|