libgoatvr

view example/Makefile @ 5:e63cb28fc644

working on the linux side a bit
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 18 Sep 2014 10:56:45 +0300
parents
children 6896f9cf9621
line source
1 src = $(wildcard src/*.c)
2 obj = $(src:.c=.o)
3 bin = test
5 vrlib_root = ..
6 vrlib = $(vrlib_root)/libgoatvr.a
8 CFLAGS = -pedantic -Wall -g `pkg-config --cflags sdl2` -I$(vrlib_root)/src
9 LDFLAGS = $(libgl) `pkg-config --libs sdl2` $(vrlib)
11 ifeq ($(shell uname -s), Darwin)
12 libgl = -framework OpenGL -lGLEW
13 else
14 libgl = -lGL -lGLU -lGLEW
15 endif
17 $(bin): $(obj) $(vrlib)
18 $(CC) -o $@ $(obj) $(LDFLAGS)
20 .PHONY: $(vrlib)
21 $(vrlib):
22 $(MAKE) -C $(vrlib_root)
24 .PHONY: clean
25 clean:
26 rm -f $(obj) $(bin)