Mercurial > hg > Game > Cerium
annotate Renderer/Test/Makefile.def @ 2022:fac44ad2867d draft
make a sound
author | Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 16 Jul 2014 02:50:32 +0900 (2014-07-15) |
parents | 4443d59a8210 |
children |
rev | line source |
---|---|
542 | 1 |
2 CERIUM = ../.. | |
3 | |
1055 | 4 ABIBIT = 64 |
641
0605f27ba7d9
Regression on Mac OS X
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
630
diff
changeset
|
5 ABI = -m$(ABIBIT) |
1531 | 6 CC = clang++ |
7 CXX =clang++ | |
1393 | 8 #CFLAGS = -Wall $(ABI) -g |
9 CFLAGS = -Wall $(ABI) -O9 #-g # -O -DDEBUG | |
1531 | 10 CXXFLAGS = $(CFLAGS) |
542 | 11 |
1421
3778a1eda68d
debuging spanpack destruction during DrawSpan
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
1393
diff
changeset
|
12 ALL = collision_effect collada motion_man ball_bound boss1_action direction gaplant ieshoot node panel universe untitled vacuum send_linda dynamic writer chain_old viewer viewer_2 # SgRootChange |
3778a1eda68d
debuging spanpack destruction during DrawSpan
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
1393
diff
changeset
|
13 |
3778a1eda68d
debuging spanpack destruction during DrawSpan
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
1393
diff
changeset
|
14 PBCMD = aquarium init_aquarium network test_linda # property_test |
3778a1eda68d
debuging spanpack destruction during DrawSpan
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
1393
diff
changeset
|
15 |
3778a1eda68d
debuging spanpack destruction during DrawSpan
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
1393
diff
changeset
|
16 all: $(ALL) |
3778a1eda68d
debuging spanpack destruction during DrawSpan
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
1393
diff
changeset
|
17 |
3778a1eda68d
debuging spanpack destruction during DrawSpan
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
1393
diff
changeset
|
18 pb: $(PBCMD) |
1163 | 19 |
630 | 20 INCLUDE = -I$(CERIUM)/include/TaskManager -I$(CERIUM)/Renderer/Engine -I. -I$(CERIUM)/include/Cerium |
606
242a9db53612
32bit/64bit ABI (64 bit is not tested yet).
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
581
diff
changeset
|
21 LIBS = -L$(CERIUM)/TaskManager -L$(CERIUM)/Renderer/Engine $(ABI) |
543 | 22 TOOL = $(CERIUM)/bin |
904 | 23 |
24 PROTO = protoc | |
25 PROTODIR = ./protobuf | |
26 PROTOFLAGS = -I=$(PROTODIR) --cpp_out=./ | |
27 PROTOLIBS = -lprotobuf |