New repo for repo.or.cz
[The-Artvertiser.git] / artvertiser / MatrixTracker / Makefile.osx
blob2012475f81332d802db4396b5f85bbd641123184
1 CC=gcc 
2 CPPFLAGS= -g -O3 -mtune=native -msse3 -arch i386 -I/usr/local/include/opencv
4 OUT=libMatrixTracker.a
5 OBJ=MatrixTracker.o ofxMatrix3x3.o ofxMatrix4x4.o ofxQuaternion.o
7 $(OUT): $(OBJ) $(wildcard *.h) $(wildcard ../FProfiler/*.h)
8         ar rcs $(OUT) $(OBJ)
10 profile: CPPFLAGS+=-DPROFILE
11 profile: all
13 clean:
14         rm -f $(OUT) $(OBJ)
16 all: $(OUT)