FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
MS-DOS-kernel/boot/makefile at master · Programuserbash/MS-DOS-kernel · GitHub
Programuserbash
/
MS-DOS-kernel
Public
forked from
FDOS/kernel
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
MS-DOS-kernel
/
boot
/
makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
33 lines (21 loc) · 931 Bytes
Breadcrumbs
MS-DOS-kernel
/
boot
/
makefile
Copy path
File metadata and controls
33 lines (21 loc) · 931 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#
#
makefile for DOS-C boot
#
!include "../mkfiles/generic.mak"
production
: fat12com.bin fat16com.bin fat32chs.bin fat32lba.bin oemfat12.bin oemfat16.bin
fat12com.bin
: boot.asm magic.mac
$(
NASM
)
-dISFAT12
$(
NASMBOOTFLAGS
)
boot.asm -lfat12com.lst -ofat12com.bin
fat16com.bin
: boot.asm magic.mac
$(
NASM
)
-dISFAT16
$(
NASMBOOTFLAGS
)
boot.asm -lfat16com.lst -ofat16com.bin
fat32chs.bin
: boot32.asm magic.mac
$(
NASM
)
$(
NASMBOOTFLAGS
)
boot32.asm -lfat32chs.lst -ofat32chs.bin
fat32lba.bin
: boot32lb.asm magic.mac
$(
NASM
)
$(
NASMBOOTFLAGS
)
boot32lb.asm -lfat32lba.lst -ofat32lba.bin
oemfat12.bin
: oemboot.asm magic.mac
$(
NASM
)
-dISFAT12
$(
NASMBOOTFLAGS
)
oemboot.asm -loemfat12.lst -ooemfat12.bin
oemfat16.bin
: oemboot.asm magic.mac
$(
NASM
)
-dISFAT16
$(
NASMBOOTFLAGS
)
oemboot.asm -loemfat16.lst -ooemfat16.bin
clobber
: clean
-
$(
RM
)
*
.bin status.me
clean
:
-
$(
RM
)
*
.lst
*
.map
*
.bak
*
.obj
Back
|
FazBrowse Home
|
New Git URL