coeng
diff Makefile @ 2:4a1c9597f4d3
foo
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Thu, 05 Feb 2015 11:04:07 +0200 |
parents | |
children | 66d1762eb203 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/Makefile Thu Feb 05 11:04:07 2015 +0200 1.3 @@ -0,0 +1,19 @@ 1.4 +ccsrc = $(wildcard src/*.cc) 1.5 +obj = $(ccsrc:.cc=.o) 1.6 +bin = test 1.7 + 1.8 +CXXFLAGS = -pedantic -Wall -g 1.9 +LDFLAGS = $(libgl) -lm -lvmath 1.10 + 1.11 +ifeq ($(shell uname -s), Darwin) 1.12 + libgl = -framework OpenGL -framework GLUT -lGLEW 1.13 +else 1.14 + libgl = -lGL -lGLU -lglut -lGLEW 1.15 +endif 1.16 + 1.17 +$(bin): $(obj) 1.18 + $(CXX) -o $@ $(obj) $(LDFLAGS) 1.19 + 1.20 +.PHONY: clean 1.21 +clean: 1.22 + rm -f $(obj) $(bin)