view example/many_task/Makefile.def @ 1592:afcb4a3f3526 draft

merge
author Masa <e085726@ie.u-ryukyu.ac.jp>
date Mon, 01 Apr 2013 18:00:35 +0900
parents 9ccfdc408d51
children 893353c014f5
line wrap: on
line source

TARGET = sort

# include/library path
# ex  macosx
#CERIUM = /Users/gongo/Source/Concurrency/Game_project/Cerium

CERIUM = ../../../Cerium

OPT = -O
OPT = -g -O2
# OPT = -g
CC      = clang++
CXX = clang++
CFLAGS  =  -Wall  $(OPT) -DUSE_SIMPLE_TASK
CXXFLAGS  = ${CFLAGS}

INCLUDE = -I${CERIUM}/include/TaskManager -I. -I..
LIBS = -L${CERIUM}/TaskManager

ABIBIT = 64
ABI = -m$(ABIBIT)