From 02dbb120fa4e1d1ad47d98807552d7c036fd2907 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Thu, 11 May 2017 13:43:42 -0400 Subject: initial commit --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..cb1ae8e --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +CFLAGS=-std=c11 -W -Wall -pedantic -O2 +APP=compute-test +LIBS=-lglfw -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) -- cgit v1.2.3