blob: 89319c7a29b9f8bb2df90815b3c986828f0296ab (
plain) (
blame)
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
49
50
51
52
53
54
55
|
#*********************** Makefile for Display\EGA ************************
inc =..\..\..\inc
dos =..\..\..\dos
msg =..\..\..\messages
hinc =..\..\..\h
#
######################## Dependencies begin here #########################
#
all: ega.cpi
cpi-head.obj: cpi-head.asm \
makefile
437-cpi.obj: 437-cpi.asm \
437-8x16.asm \
437-8x14.asm \
makefile \
437-8x8.asm
850-cpi.obj: 850-cpi.asm \
850-8x16.asm \
850-8x14.asm \
makefile \
850-8x8.asm
860-cpi.obj: 860-cpi.asm \
860-8x16.asm \
860-8x14.asm \
makefile \
860-8x8.asm
863-cpi.obj: 863-cpi.asm \
863-8x16.asm \
863-8x14.asm \
makefile \
863-8x8.asm
865-cpi.obj: 865-cpi.asm \
865-8x16.asm \
865-8x14.asm \
makefile \
865-8x8.asm
copyrigh.obj: copyrigh.asm $(inc)\copyrigh.inc \
makefile
ega.cpi: cpi-head.obj 437-cpi.obj 850-cpi.obj 860-cpi.obj \
863-cpi.obj 865-cpi.obj copyrigh.obj makefile ega.lnk \
makefile
link @ega.lnk
exe2bin cpi-head.exe ega.cpi
del cpi-head.exe
|