Mercurial > hg > Game > Cerium
annotate example/Bulk/Makefile.def @ 1952:7459db74ec3e draft
merge
author | Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 06 Feb 2014 18:15:18 +0900 |
parents | bb7f5ae152c7 |
children |
rev | line source |
---|---|
659 | 1 TARGET = twice |
2 | |
3 # include/library path | |
4 # ex macosx | |
5 #CERIUM = /Users/gongo/Source/Cerium | |
6 | |
7 # ex linux/ps3 | |
8 CERIUM = ../../../Cerium | |
9 | |
1770 | 10 CC = clang++ |
11 OPT = -g -O0 # -O9 | |
713
97adb3fe85c6
remove SIMPLE_TASK conditional
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
688
diff
changeset
|
12 CFLAGS = -Wall $(OPT) |
659 | 13 |
1214 | 14 ABIBIT = 64 |
659 | 15 |
869 | 16 #INCLUDE = -I${CERIUM}/include/TaskManager -I. -I.. |
17 #LIBS = -L${CERIUM}/TaskManager | |
18 | |
19 INCLUDE = -I. -I.. -I${CERIUM}/include/TaskManager -I$(CERIUM)/Renderer/Engine -I$(CERIUM)/include/Cerium | |
20 LIBS = -L${CERIUM}/TaskManager -L$(CERIUM)/Renderer/Engine | |
21 TOOL = $(CERIUM)/bin |