This commit is contained in:
2017-08-04 22:01:19 -04:00
commit 20926f91d6
6 changed files with 1098 additions and 0 deletions

7
Makefile Normal file
View File

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