equal
deleted
inserted
replaced
4 |
4 |
5 # Number of CPUs (for make -j) |
5 # Number of CPUs (for make -j) |
6 NCPU=`sysctl -n hw.ncpu` |
6 NCPU=`sysctl -n hw.ncpu` |
7 if test x$NJOB = x; then |
7 if test x$NJOB = x; then |
8 NJOB=$NCPU |
8 NJOB=$NCPU |
9 fi |
|
10 |
|
11 # SDK path |
|
12 if test x$SDK_PATH = x; then |
|
13 SDK_PATH=/Developer/SDKs |
|
14 fi |
9 fi |
15 |
10 |
16 # Generic, cross-platform CFLAGS you always want go here. |
11 # Generic, cross-platform CFLAGS you always want go here. |
17 CFLAGS="-O3 -g -pipe" |
12 CFLAGS="-O3 -g -pipe" |
18 |
13 |