repo.or.cz
/
The-Artvertiser.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
New repo for repo.or.cz
[The-Artvertiser.git]
/
artvertiser
/
MatrixTracker
/
Makefile.osx
blob
2012475f81332d802db4396b5f85bbd641123184
1
CC=gcc
2
CPPFLAGS= -g -O3 -mtune=native -msse3 -arch i386 -I/usr/local/include/opencv
3
4
OUT=libMatrixTracker.a
5
OBJ=MatrixTracker.o ofxMatrix3x3.o ofxMatrix4x4.o ofxQuaternion.o
6
7
$(OUT): $(OBJ) $(wildcard *.h) $(wildcard ../FProfiler/*.h)
8
ar rcs $(OUT) $(OBJ)
9
10
profile: CPPFLAGS+=-DPROFILE
11
profile: all
12
13
clean:
14
rm -f $(OUT) $(OBJ)
15
16
all: $(OUT)
17