compiles and seems to run; not properly tested
[The-Artvertiser.git] / artvertiser / ofxXmlSettings / Makefile
blob8caf2d9b9d9db634cd91ffbfeddbc92a265af076
1 CC=gcc
2 CPPFLAGS= -g -O3 -mtune=native -msse3 -arch i386
4 OUT=libofxXmlSettings.a
5 OBJ=ofxXmlSettings.o tinyxml.o tinyxmlparser.o tinyxmlerror.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)