summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2017-05-13 01:44:07 -0400
committerPaul Duncan <pabs@pablotron.org>2017-05-13 01:44:07 -0400
commit1d1e24212f73deef4d0c3ba33f7c213311345b60 (patch)
tree2011de60fe06d08c88b4888d327821b88cb5ddb8
parenta1166fd2cb36113083dcd2eb31dfa141c12ae011 (diff)
downloadcompute-test-1d1e24212f73deef4d0c3ba33f7c213311345b60.tar.bz2
compute-test-1d1e24212f73deef4d0c3ba33f7c213311345b60.zip
add debug target
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7ef6f8d..4294934 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ APP=compute-test
LIBS=-fopenmp -lSDL2 -lGLEW -lGL -lcrypto
OBJS=main.o
-.PHONY=all clean test
+.PHONY=all clean test debug
all: $(APP)
@@ -15,3 +15,6 @@ clean:
test: $(APP)
./$(APP)
+
+debug: $(APP)
+ INTEL_DEBUG=cs ./$(APP)