dungeon_crawler

annotate prototype/Makefile.in @ 28:f5fb04fe12cd

moved compiler detection to the configure script
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 25 Aug 2012 20:20:56 +0300
parents prototype/Makefile@527fede30057
children 862461b686f4
rev   line source
nuclear@24 1 csrc = $(wildcard src/*.c) $(wildcard vmath/*.c) $(wildcard drawtext/*.c)
nuclear@1 2 ccsrc = $(wildcard src/*.cc) $(wildcard vmath/*.cc)
nuclear@1 3 obj = $(csrc:.c=.o) $(ccsrc:.cc=.o)
nuclear@1 4 dep = $(obj:.o=.d)
nuclear@1 5 bin = proto
nuclear@1 6
nuclear@17 7 warn = -Wall -Wno-format-extra-args -Wno-char-subscripts
nuclear@17 8
nuclear@28 9 inc = -I. -Ivmath -Idrawtext `pkg-config --cflags freetype2`
nuclear@24 10
nuclear@24 11 CFLAGS = -pedantic $(warn) $(dbg) $(opt) $(inc)
nuclear@28 12 CXXFLAGS = $(CFLAGS) $(cxx11_cflags)
nuclear@28 13 LDFLAGS = $(cxx11_ldflags) $(libgl) -lm -lassimp -limago `pkg-config --libs freetype2`
nuclear@1 14
nuclear@1 15 ifeq ($(shell uname -s), Darwin)
nuclear@1 16 libgl = -framework OpenGL -framework GLUT -lglew
nuclear@1 17 else
nuclear@1 18 libgl = -lGL -lGLU -lglut -lGLEW
nuclear@1 19 endif
nuclear@1 20
nuclear@14 21 $(bin): $(obj) Makefile
nuclear@1 22 $(CXX) -o $@ $(obj) $(LDFLAGS)
nuclear@1 23
nuclear@1 24 -include $(dep)
nuclear@1 25
nuclear@1 26 %.d: %.c
nuclear@1 27 @$(CPP) $(CFLAGS) $< -MM -MT $(@:.d=.o) >$@
nuclear@1 28
nuclear@1 29 %.d: %.cc
nuclear@1 30 @$(CPP) $(CXXFLAGS) $< -MM -MT $(@:.d=.o) >$@
nuclear@1 31
nuclear@1 32 .PHONY: clean
nuclear@1 33 clean:
nuclear@1 34 rm -f $(obj) $(bin) $(dep)
nuclear@12 35
nuclear@12 36 include build/macapp.mk