Files
silleee/Makefile
2017-08-04 22:01:19 -04:00

8 lines
130 B
Makefile

LIBFILES=sileee.c
TESTFILES=$(wildcard tests/*.c)
test:
gcc $(LIBFILES) $(TESTFILES) -o test_silly
./test_silly
rm test_silly