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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
####
####
#### VMS style 'makefile'. This file might be obsoleted by
#### the current source. Together with the Unix/Linux makefile.in,
#### this file might be a good starting point for future OpenVMS
#### ports.
####
#### Author : Jouk Jansen (joukj@hrem.stm.tudelft.nl)
####
####
CC=cc/name=(as_is,short)/float=ieee\
/include=([],[-.include],[-.appframe],[-.apputil],[-.bitmap],[-.ind])
OBS = \
indword.obj,\
indutil.obj,\
indscan.obj,\
indrenum.obj,\
indnode.obj,\
indmini.obj,\
indlist.obj,\
indlink.obj,\
inditem.obj,\
indind.obj,\
indguess.obj,\
indfront.obj,\
inddeb.obj
all : timestamp.vms [-.lib]ind.olb
write sys$output "all done in [.ind]"
timestamp.vms : config.h_vms
copy config.h_vms indConfig.h
open/write file timestamp.vms
close file
[-.lib]ind.olb : $(OBS)
library/create ind.olb $(OBS)
rename ind.olb [-.lib]
inddeb.obj : \
inddeb.c \
indConfig.h \
indlocal.h \
ind.h \
[-.apputil]utilEndian.h \
[-.include]appDebugoff.h \
[-.include]appDebug.h
indfront.obj : \
indfront.c \
indConfig.h \
ind.h \
indlocal.h \
[-.apputil]utilEndian.h \
[-.include]appDebugon.h \
[-.include]appDebug.h
indguess.obj : \
indguess.c \
indConfig.h \
indlocal.h \
ind.h \
[-.apputil]utilEndian.h \
[-.include]charnames.h \
[-.include]appDebugoff.h \
[-.include]appDebug.h
indind.obj : \
indind.c \
indConfig.h \
indlocal.h \
ind.h \
[-.apputil]utilEndian.h \
[-.include]appDebugon.h \
[-.include]appDebug.h
inditem.obj : \
inditem.c \
indConfig.h \
indlocal.h \
ind.h \
[-.apputil]utilEndian.h \
[-.include]appDebugoff.h \
[-.include]appDebug.h
indlink.obj : \
indlink.c \
indConfig.h \
indlocal.h \
ind.h \
[-.apputil]utilEndian.h \
[-.include]appDebugoff.h \
[-.include]appDebug.h
indlist.obj : \
indlist.c \
indConfig.h \
ind.h \
[-.include]appDebugoff.h \
[-.include]appDebug.h
indmini.obj : \
indmini.c \
indConfig.h \
indlocal.h \
ind.h \
[-.apputil]utilEndian.h
indnode.obj : \
indnode.c \
indConfig.h \
indlocal.h \
ind.h \
[-.apputil]utilEndian.h \
[-.include]appDebugoff.h \
[-.include]appDebug.h
indrenum.obj : \
indrenum.c \
indConfig.h \
indlocal.h \
ind.h \
[-.apputil]utilEndian.h \
[-.include]appDebugoff.h \
[-.include]appDebug.h
indscan.obj : \
indscan.c \
indConfig.h \
[-.include]charnames.h \
indlocal.h \
ind.h \
[-.apputil]utilEndian.h \
[-.apputil]utilFontEncoding.h \
[-.include]appDebugon.h \
[-.include]appDebug.h
indutil.obj : \
indutil.c \
indConfig.h \
ind.h \
[-.include]appDebugon.h \
[-.include]appDebug.h
indword.obj : \
indword.c \
indConfig.h \
ind.h \
indlocal.h \
[-.apputil]utilEndian.h \
[-.include]charnames.h \
[-.include]appDebugon.h \
[-.include]appDebug.h
|