From 1d1e24212f73deef4d0c3ba33f7c213311345b60 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Sat, 13 May 2017 01:44:07 -0400 Subject: add debug target --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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) -- cgit v1.2.3