repo.or.cz
/
thunix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add tfs remove part
[thunix.git]
/
init
/
Makefile
blob
1c1397eea941a7472cb6b75d18f51e02fb5c7b31
1
AS
=
as
-
I..
/
include
2
CC
=
gcc
-
nostdinc
-
I..
/
include
-
Wall
-
Wno-unused
3
LD
=
ld
4
LDFLAGS
= --
oformat binary
-
N
5
6
OBJS
=
init.o
7
8
init.o
:
init.o
9
10
.c.s
:
11
${
CC
} -
S
-
o
$*
.s
$<
12
.s.o
:
13
${
AS
} -
o
$*
.o
$<
14
.c.o
:
15
${
CC
} -
c
-
o
$*
.o
$<
16
17
18
clean
:
19
rm
-
f
*
.o
*
.map
*
~