diff --git a/.gitignore b/.gitignore index 8fa11ee..d21079b 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ build compile_commands.json site libflint.so +test diff --git a/Makefile b/Makefile index 77dc460..e4a2582 100644 --- a/Makefile +++ b/Makefile @@ -26,4 +26,7 @@ uninstall: clean: rm -f $(TARGET) + rm -f test +test: + cc $(CFLAGS) -o test tests/tests.c src/*.c