CFLAGS=-std=c11 -fopenmp -W -Wall -pedantic -O2 APP=compute-test LIBS=-fopenmp -lSDL2 -lGLEW -lGL OBJS=main.o .PHONY=all clean test all: $(APP) $(APP): $(OBJS) $(CC) -o $(APP) $(OBJS) $(LIBS) clean: $(RM) $(OBJS) $(APP) test: $(APP) ./$(APP)