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
Open floppy interrupt
[thunix.git]
/
boot
/
Makefile
blob
dcecb37540a0a142425836174b00369a94c562b9
1
AS
=
as
-
I..
/
include
2
CC
=
gcc
-
nostdinc
-
I..
/
include
-
Wall
3
LD
=
ld
4
LDFLAGS
= --
oformat binary
-
N
5
6
OBJS
=
bootsect.o head.o
7
8
stop
:
bootsect.o head.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
clean
:
18
rm
-
f
*
.o
*
.map
*
~