repo.or.cz
/
lcapit-junk-code.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
http: tiny-http: Minor note
[lcapit-junk-code.git]
/
mcount
/
Makefile
blob
a7db47ab5836a674f7ffd1e42387585fc515981a
1
CC
=
gcc
2
OBJDUMP
=
objdump
3
CFLAGS
= -
Wall
-
g
-
O0
-
pg
4
5
all
:
mcount-test
6
7
mcount-test
:
mcount.o mcount-wrapper.o
8
$(
CC
) -
o
$
@
$+
9
$(
OBJDUMP
) -
d
$
@
> $
@.dis
10
11
mcount.o
:
mcount.c
12
$(
CC
) $(
CFLAGS
) -
c
$<
13
14
mcount-wrapper.o
:
mcount-wrapper.S
15
$(
CC
) $(
CFLAGS
) -
c
$<
16
17
.PHONY
:
clean
18
19
clean
:
20
rm
-
f
*
~
*
.o
*
.dis mcount-test