8 lines
129 B
Makefile
8 lines
129 B
Makefile
LIBFILES=silly.c
|
|
TESTFILES=$(wildcard tests/*.c)
|
|
|
|
test:
|
|
gcc $(LIBFILES) $(TESTFILES) -o test_silly
|
|
./test_silly
|
|
rm test_silly
|