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
/
FProfiler
/
Makefile.linux
blob
1f3cc73bcceff3bac68a58492ec56fc40ffc3dce
1
CC=gcc
2
CPPFLAGS=-g -o2
3
4
OUT=libfprofiler.a
5
OBJ=FProfiler.o FTime.o FThread.o
6
7
$(OUT): $(OBJ) $(wildcard *.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