Mercurial > hg > Game > Cerium
annotate example/Miller_Rabin/Makefile.def @ 1265:356cc13725a6 draft
change debug option
author | Daichi Toma <toma@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 19 Nov 2011 14:37:52 +0900 |
parents | 5153ce1b2001 |
children | c1c8dbed726d |
rev | line source |
---|---|
1242 | 1 TARGET = prime |
2 | |
3 # include/library path | |
4 # ex macosx | |
5 #CERIUM = /Users/gongo/Source/Cerium | |
6 | |
7 # ex linux/ps3 | |
8 CERIUM = ../../../Cerium | |
9 | |
10 CC = g++ | |
1259 | 11 #CFLAGS = -O9 -Wall |
1265
356cc13725a6
change debug option
Daichi Toma <toma@cr.ie.u-ryukyu.ac.jp>
parents:
1264
diff
changeset
|
12 CFLAGS = -g -O0 -Wall |
1264 | 13 #CFLAGS = -pg -Wall |
1242 | 14 |
15 INCLUDE = -I${CERIUM}/include/TaskManager -I. -I.. | |
16 LIBS = -L${CERIUM}/TaskManager |