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 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)