FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
MS-DOS-kernel/drivers/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
/
drivers
/
makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
49 lines (33 loc) · 916 Bytes
Breadcrumbs
MS-DOS-kernel
/
drivers
/
makefile
Copy path
File metadata and controls
49 lines (33 loc) · 916 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#
#
makefile for device.lib
#
#
$Id: makefile 1387 2009-05-19 21:39:29Z bartoldeman $
#
!include "../mkfiles/generic.mak"
#
MICROSOFT C
#
-----------
#
MODEL = s
#
CFLAGS = /c /Gs /A$(MODEL)
#
AFLAGS = /Mx /Dmem$(MODEL)=1
#
TERM = ;
#
BORLAND C
#
-----------
#
MODEL = s
#
CFLAGS = -c -m$(MODEL)
#
AFLAGS = /Mx /Dmem$(MODEL)=1
#
LIBFLAGS = /c
OBJS
= floppy.obj rdpcclk.obj wrpcclk.obj wratclk.obj
LIBOBJS
=
$(
LIBPLUS
)
floppy.obj
$(
LIBPLUS
)
rdpcclk.obj
$(
LIBPLUS
)
wrpcclk.obj
$(
LIBPLUS
)
wratclk.obj
#
Build the LIBRARY
#
-----------------
all
: production
production
: ../lib/device.lib
../lib/device.lib
: device.lib
$(
CP
)
device.lib ..
$(
DIRSEP
)
lib
clobber
: clean
-
$(
RM
)
device.lib status.me ..
$(
DIRSEP
)
lib
$(
DIRSEP
)
device.lib
clean
:
-
$(
RM
)
*
.obj
*
.bak
*
.crf
*
.xrf
*
.map
*
.lst
*
.cod
*
.err
device.lib
:
$(
OBJS
)
-
$(
RM
)
device.lib
$(
LIBUTIL
)
$(
LIBFLAGS
)
device.lib
$(
LIBOBJS
)
$(
LIBTERM
)
Back
|
FazBrowse Home
|
New Git URL