summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--.gitignore4
-rw-r--r--Makefile2
2 files changed, 4 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index e8c8530..ff9fbe2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,7 @@
 t
 bak
+.comfile
 *.o
 *.cm[io]
-notrack/*
+lisc/lo
+t.out
diff --git a/Makefile b/Makefile
index 243ae93..db98298 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ bak: elf.ml lo2.ml
 
 test: bak
 	@./bak test
-	@cc -O2 -o t tmain.c t.o && ./t
+	@cc -O2 -o t.out tmain.c t.o && ./t.out
 
 clean:
 	rm -f bak t *.o *.cm[io]