summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e3cb8e5..86e8f6f 100644
--- a/Makefile
+++ b/Makefile
@@ -38,9 +38,12 @@ output/output_asm.o: output/output_asm.h parse.h util.h
# Intput modules
input/input_bin.o: input/input_bin.h parse.h
-.PHONY: clean test
+.PHONY: clean test test-quick
clean:
- rm -f $(EXECUTABLES) $(ASM_OBJECTS) $(DISASM_OBJECTS) $(ASMCAT_OBJECTS) $(BINCAT_OBJECTS)
test: all
make -C test test
+
+test-quick: all
+ make -C test test DISABLE_VALGRIND=1