-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
53 lines (50 loc) · 916 Bytes
/
Makefile
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
CURSES=..\pdcurses
lxedit.exe: lxlib.obj objects.obj pages.obj fixups.obj info.obj lxedit.obj
wlink @<<
name $@
system dos32a
file {
$CURSES\dos\pdcurses.lib
$<
}
option quiet
<<
a.exe: a.obj
wlink @<<
name $@
system dos32a
file {
$<
}
option quiet
<<
b.exe: b.obj
wlink @<<
name $@
system stub32ac
debug all
file {
$<
}
<<
lxedit.obj: lxedit.c lx.h
wpp386 -zq -bt=dos32a $< -i=$CURSES
lxlib.obj: lxlib.c lx.h
wpp386 -zq -bt=dos32a $< -i=$CURSES
objects.obj: objects.c lx.h
wpp386 -zq -bt=dos32a $< -i=$CURSES
pages.obj: pages.c lx.h
wpp386 -zq -bt=dos32a $< -i=$CURSES
fixups.obj: fixups.c lx.h
wpp386 -zq -bt=dos32a $< -i=$CURSES
info.obj: info.c lx.h
wpp386 -zq -bt=dos32a $< -i=$CURSES
a.obj: a.c
wpp386 -zq -bt=dos32a $< -i=$CURSES
b.obj: b.c
wpp386 -d2 -zq -bt=dos32a $< -i=$CURSES
clean: .SYMBOLIC
del *.obj
del lxedit.exe
del a.exe
del b.exe