Mercurial > hg > Game > Cerium
annotate example/bitonic_sort/Makefile.def @ 2048:6796d85f3d6b draft
remove error
author | Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 28 Jan 2016 00:05:49 +0900 |
parents | 33af6d6e1bfc |
children |
rev | line source |
---|---|
2035 | 1 TARGET = bitonic_sort |
2 | |
3 # include/library path | |
4 # ex macosx | |
5 #CERIUM = /Users/gongo/Source/Concurrency/Game_project/Cerium | |
6 | |
7 CERIUM = ../../../Cerium | |
8 | |
9 CC = clang++ | |
10 OPT = -g -O0 | |
11 #CXX = clang++ | |
12 CFLAGS = -Wall $(OPT) | |
13 #CXXFLAGS = ${CFLAGS} | |
14 | |
15 INCLUDE = -I. -I.. -I${CERIUM}/include/TaskManager | |
16 LIBS = -L${CERIUM}/TaskManager |