9 lines
112 B
Makefile
9 lines
112 B
Makefile
|
|
all: tt
|
|
|
|
tt: src/cli.c src/tinytemplate.c 3p/xjson.c
|
|
gcc $^ -o $@ -Wall -Wextra -g -I3p
|
|
|
|
clean:
|
|
rm tt tt.exe
|