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
|
# Makefile for demo programs for VMS
# contributed by Jouk Jansen joukj@crys.chem.uva.nl
.first
define gl [-.include.gl]
.include [-]mms-config.
##### MACROS #####
INCDIR = [-.include]
CFLAGS = /include=$(INCDIR)/define=(FBIND=1)
GL_LIBS = [-.lib]libMesaaux/l,libMesatk/l,libMesaGLU/l,libMesaGL/l,$(XLIBS)
LIB_DEP = [-.lib]$(GL_LIB) [-.lib]$(GLU_LIB) [-.lib]$(TK_LIB) [-.lib]$(AUX_LIB)
PROGS = bounce.exe;,gamma.exe;,gears.exe;,glxdemo.exe;,glxpixmap.exe;,\
isosurf.exe;,offset.exe;,osdemo.exe;,spin.exe;,test0.exe;,\
texobj.exe;,xdemo.exe;,reflect.exe;,winpos.exe;
##### RULES #####
##### TARGETS #####
default :
mms $(PROGS)
clean :
delete *.obj;*
realclean :
delete $(PROGS)
delete *.obj;*
bounce.exe; : bounce.obj $(LIB_DEP)
link bounce,$(GL_LIBS)
gamma.exe; : gamma.obj $(LIB_DEP)
link gamma,$(GL_LIBS)
gears.exe; : gears.obj $(LIB_DEP)
link gears,$(GL_LIBS)
glxdemo.exe; : glxdemo.obj $(LIB_DEP)
link glxdemo,$(GL_LIBS)
glxpixmap.exe; : glxpixmap.obj $(LIB_DEP)
link glxpixmap,$(GL_LIBS)
isosurf.exe; : isosurf.obj $(LIB_DEP)
link isosurf,$(GL_LIBS)
offset.exe; : offset.obj $(LIB_DEP)
link offset,$(GL_LIBS)
osdemo.exe; : osdemo.obj $(LIB_DEP)
link osdemo,$(GL_LIBS)
spin.exe; : spin.obj $(LIB_DEP)
link spin,$(GL_LIBS)
test0.exe; : test0.obj $(LIB_DEP)
link test0,$(GL_LIBS)
texobj.exe; : texobj.obj $(LIB_DEP)
link texobj,$(GL_LIBS)
xdemo.exe; : xdemo.obj $(LIB_DEP)
link xdemo,$(GL_LIBS)
reflect.exe; : reflect.obj $(LIB_DEP)
link reflect,$(GL_LIBS)
winpos.exe; : winpos.obj $(LIB_DEP)
link winpos,$(GL_LIBS)
|