New repo for repo.or.cz
[The-Artvertiser.git] / artvertiser / FProfiler / Makefile.osx
blob3ed3255a7603d1b9fa61b61d2bd1341afba48736
1 CC=gcc 
2 CPPFLAGS=-g -o2 -arch i386
4 OUT=libfprofiler.a
5 OBJ=FProfiler.o FTime.o FThread.o 
7 $(OUT): $(OBJ) $(wildcard *.h)
8         ar rcs $(OUT) $(OBJ)
10 profile: CPPFLAGS+=-DPROFILE
11 profile: all
13 clean:
14         rm -f $(OUT) $(OBJ)
16 all: $(OUT)