-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCommonMakefile
114 lines (102 loc) · 2.14 KB
/
CommonMakefile
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
MAJORVERSION = 1
MINORVERSION = 0
VERSION = $(MAJORVERSION).$(MINORVERSION)
PGM = midaswww
CLASS = Midaswww
DIR = $(PGM)-$(VERSION)
DEFINES = -DVERSION="\"$(VERSION)\""
HEADERS = \
SGMLAnchorText.h \
SGMLAnchorTextP.h \
SGMLCompositeText.h \
SGMLCompositeTextP.h \
SGMLFormattedText.h \
SGMLFormattedTextP.h \
SGMLHyper.h \
SGMLHyperP.h \
SGMLListText.h \
SGMLListTextP.h \
SGMLMarkerText.h \
SGMLMarkerTextP.h \
SGMLPlainText.h \
SGMLPlainTextP.h \
SGMLText.h \
SGMLTextP.h \
Tree.h \
TreeP.h \
midas.h \
midasconvert.h \
midaserrors.h \
midaslist.h \
midasshell.h \
midasoperand.h \
midasshell.h \
midaswidget.h
SRCS = \
SGMLAnchorText.c \
SGMLCompositeText.c \
SGMLFormattedText.c \
SGMLHyper.c \
SGMLListText.c \
SGMLMarkerText.c \
SGMLPlainText.c \
SGMLText.c \
Tree.c \
custom.c \
dxm.c \
midas.c \
midasclass.c \
midasconvert.c \
midasdeclare.c \
midasevaluate.c \
midasingot.c \
midaslist.c \
midasloadimage.c \
midaswww.c \
midasutil.c
OBJS = \
SGMLAnchorText.o \
SGMLCompositeText.o \
SGMLFormattedText.o \
SGMLHyper.o \
SGMLListText.o \
SGMLMarkerText.o \
SGMLPlainText.o \
SGMLText.o \
Tree.o \
custom.o \
dxm.o \
midas.o \
midasclass.o \
midasconvert.o \
midasdeclare.o \
midasevaluate.o \
midasingot.o \
midaslist.o \
midasloadimage.o \
midaswww.o \
midasutil.o
UILS = \
midas.uil \
midaswww.uil
UIDS = \
midas.uid \
midaswww.uid
OTHERS = \
Imakefile \
CommonMakefile \
Makefile.hp \
Makefile.sgi \
Makefile.aix32 \
Midas.ad \
Midaswww.ad \
descrip.mms \
midaswww.opt \
README_VMS \
README
world:: $(PGM) $(UIDS)
.SUFFIXES : .uid .uil
.uil.uid:
uil -o $*.uid $<
test:: $(PGM) $(UIDS)
XUSERFILESEARCHPATH=./%N.ad ; export XUSERFILESEARCHPATH; ./$(PGM)