|
Revision 7, 457 bytes
(checked in by emasson, 3 years ago)
|
|
initial import for the community edition
|
| Line | |
|---|
| 1 | # Makefile for VMS |
|---|
| 2 | # contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | #vms |
|---|
| 6 | .ifdef SHARE |
|---|
| 7 | GL_SHAR = libMesaGL.exe |
|---|
| 8 | GLU_SHAR = libMesaGLU.exe |
|---|
| 9 | GLUT_SHAR = libglut.exe |
|---|
| 10 | .endif |
|---|
| 11 | GL_LIB = libMesaGL.olb |
|---|
| 12 | GLU_LIB = libMesaGLU.olb |
|---|
| 13 | GLUT_LIB = libglut.olb |
|---|
| 14 | CC = cc |
|---|
| 15 | CXX = cxx/define=(LIBRARYBUILD=1)/assume=(nostdnew,noglobal_array_new) |
|---|
| 16 | CFLAGS1 = |
|---|
| 17 | MAKELIB = library/create |
|---|
| 18 | RANLIB = true |
|---|
| 19 | .ifdef SHARE |
|---|
| 20 | XLIBS = [--.vms]xlib_share/opt |
|---|
| 21 | .else |
|---|
| 22 | XLIBS = [--.vms]xlib/opt |
|---|
| 23 | .endif |
|---|