-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMAKEFILE
More file actions
executable file
·28 lines (21 loc) · 919 Bytes
/
MAKEFILE
File metadata and controls
executable file
·28 lines (21 loc) · 919 Bytes
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
# =============================================================================
# Project makefile
# =============================================================================
# Settings - Edit the names of the object and executable files.
objects = CHESS.obj DRAW.obj ENGINE.obj ASSETS.obj
dest = CHESS.EXE
# =============================================================================
# Do NOT edit this section, unless you know what you are doing.
# =============================================================================
.asm.obj
# use TASM with debug info (stripped anyway by wlink if not used)
tasm /ml /m2 /w2 /z /zi $<
$(dest): $(objects)
wlink option quiet system pmodew name $@ file {$(objects)}
clean: .symbolic
del *.obj
del $(dest)
.silent
debug: $(objects) .symbolic
wlink debug watcom all option quiet system pmodew name $(dest) file {$(objects)}
wd /tr=rsi /li=43 $(dest)