forked from Tronix286/AIL2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcms.mak
37 lines (30 loc) · 1.37 KB
/
cms.mak
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
###############################################################
# #
# MAKEFILE for AIL development #
# 13-Mar-91 John Miles #
# #
# Execute with Microsoft (or compatible) MAKE #
# #
###############################################################
##########################################################################
# #
# TASM: Case sensitivity on, enable multiple passes to optimize forward #
# references/jumps, generate debug info, enable all warnings #
# #
# TC: Compile only, generate debug info, large memory model #
# #
##########################################################################
#
# Application Program Interface (API) module
#
ail.obj: ail.asm ail.inc ail.mac
tasm /m /w+ /ml ail.asm;
#
# CMS
#
cms.adv: xmidi.asm spkr.inc ail.inc ail.mac
tasm /zi /m /w+ /ml /dCMS xmidi.asm;
tlink /c /x xmidi;
exe2bin xmidi.exe cms.adv
del xmidi.exe