Mercurial > hg > Game > Cerium
annotate example/many_task/Makefile.def @ 829:c3fb62d9355f draft
merge
author | tkaito |
---|---|
date | Tue, 25 May 2010 03:41:10 +0900 |
parents | 07351a5a51c9 |
children | 53ad3a61b40b |
rev | line source |
---|---|
109 | 1 TARGET = sort |
2 | |
3 # include/library path | |
291 | 4 # ex macosx |
217 | 5 #CERIUM = /Users/gongo/Source/Concurrency/Game_project/Cerium |
109 | 6 |
256 | 7 CERIUM = ../../../Cerium |
8 | |
674
07351a5a51c9
fix many task example (sort).
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
356
diff
changeset
|
9 OPT = -O9 |
07351a5a51c9
fix many task example (sort).
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
356
diff
changeset
|
10 # OPT = -g |
256 | 11 CC = g++ |
674
07351a5a51c9
fix many task example (sort).
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
356
diff
changeset
|
12 CFLAGS = -Wall $(OPT) |
256 | 13 |
14 INCLUDE = -I${CERIUM}/include/TaskManager -I. -I.. | |
15 LIBS = -L${CERIUM}/TaskManager |