|
Revision 7, 0.6 KB
(checked in by emasson, 3 years ago)
|
|
initial import for the community edition
|
| Line | |
|---|
| 1 | # Makefile for Mesa for VMS |
|---|
| 2 | # contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl |
|---|
| 3 | |
|---|
| 4 | macro : |
|---|
| 5 | @ macro="" |
|---|
| 6 | .ifdef NOSHARE |
|---|
| 7 | .else |
|---|
| 8 | @ if f$getsyi("HW_MODEL") .ge. 1024 then macro= "/MACRO=(SHARE=1)" |
|---|
| 9 | .endif |
|---|
| 10 | $(MMS)$(MMSQUALIFIERS)'macro' all |
|---|
| 11 | |
|---|
| 12 | all : |
|---|
| 13 | if f$search("lib.dir") .eqs. "" then create/directory [.lib] |
|---|
| 14 | set default [.src] |
|---|
| 15 | $(MMS)$(MMSQUALIFIERS) |
|---|
| 16 | set default [-.progs.util] |
|---|
| 17 | $(MMS)$(MMSQUALIFIERS) |
|---|
| 18 | set default [-.demos] |
|---|
| 19 | $(MMS)$(MMSQUALIFIERS) |
|---|
| 20 | set default [-.xdemos] |
|---|
| 21 | $(MMS)$(MMSQUALIFIERS) |
|---|
| 22 | if f$search("[-]tests.DIR") .nes. "" then pipe set default [-.tests] ; $(MMS)$(MMSQUALIFIERS) |
|---|