Files
silly/Makefile
2017-07-29 16:33:47 -04:00

8 lines
129 B
Makefile

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