diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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) |