This commit is contained in:
2017-07-29 16:33:47 -04:00
commit 76fcdbeb16
6 changed files with 1247 additions and 0 deletions

7
Makefile Normal file
View File

@@ -0,0 +1,7 @@
LIBFILES=silly.c
TESTFILES=$(wildcard tests/*.c)
test:
gcc $(LIBFILES) $(TESTFILES) -o test_silly
./test_silly
rm test_silly