Files
silleee/Makefile

8 lines
131 B
Makefile

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