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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
|
#
#########################################################################
#
# makefile for The Hessling Editor (THE)
#
#########################################################################
#
# You need the following environment variables set like:
# THE_SRCDIR=c:\the
# PDCURSES_SRCDIR=c:\pdcurses
# PDCURSES_BINDIR=c:\pdc\vc
# If building with Regina...
# REGINA_BINDIR=c:\regina\vc
# REGINA_SRCDIR=c:\regina
# If building with Object Rexx...
# OREXX_BINDIR=c:\objrexx\api
# If building with Rexx/Trans...
# REXXTRANS_BINDIR=c:\rexxtrans
# REXXTRANS_SRCDIR=c:\rexxtrans
# If building with WinRexx...
# WINREXX_BINDIR=c:\winrexx
# WINREXX_SRCDIR=c:\winrexx
# If building with Quercus Rexx...
# QUERCUS_BINDIR=c:\quercus
# QUERCUS_SRCDIR=c:\quercus
# If building with uni-Rexx...
# UNIREXX_BINDIR=c:\unirexx
# UNIREXX_SRCDIR=c:\unirexx
#
# MSVCDIR=c:\program files\microsoft visual studio\vc98
#
#########################################################################
#
VER = 31
VERDOT = 3.1
SRC = $(THE_SRCDIR)
CURSBIN = $(PDCURSES_BINDIR)
REXXTRANSBIN = c:\bin
CURSLIB = $(CURSBIN)\curses.lib # pdcurses.lib for static linking
CURSINC = -I$(PDCURSES_SRCDIR) #-DPDC_STATIC_BUILD # add _DPDC_STATIC_BUILD for static linking
SETARGV = "$(MSVCDIR)\lib\setargv.obj"
REGINA_BIN = $(REGINA_BINDIR)
REGINA_REXXLIBS = $(REGINA_BIN)\regina.lib
REGINA_REXXINC = -I$(REGINA_SRCDIR) -DUSE_REGINA
OREXX_REXXLIBS = $(OREXX_BINDIR)\api\rexx.lib $(OREXX_BINDIR)\api\rexxapi.lib
OREXX_REXXINC = -I$(OREXX_BINDIR)\api -DUSE_OREXX
WINREXX_REXXLIBS = $(WINREXX_BINDIR)\api\rxrexx.lib
WINREXX_REXXINC = -I$(WINREXX_BINDIR)\api -DUSE_WINREXX
QUERCUS_REXXLIBS = $(QUERCUS_BINDIR)\api\wrexx32.lib
QUERCUS_REXXINC = -I$(QUERCUS_BINDIR)\api -DUSE_QUERCUS
UNIREXX_REXXLIBS = $(UNIREXX_BINDIR)\rxx.lib
UNIREXX_REXXINC = -I$(UNIREXX_BINDIR) -DUSE_UNIREXX
REXXTRANS_REXXLIBS = $(REXXTRANS_BINDIR)\rexxtrans.lib
REXXTRANS_REXXINC = -I$(REXXTRANS_SRCDIR) -DUSE_REXXTRANS
#########################################################################
# MS VC++ compiler on Win32
#########################################################################
PROJ = the.exe
OBJ = obj
CC = cl
!if "$(INT)" == "REGINA"
REXXLIB = $(REGINA_REXXLIBS)
REXXINC = $(REGINA_REXXINC)
!elseif "$(INT)" == "OREXX"
REXXLIB = $(OREXX_REXXLIBS)
REXXINC = $(OREXX_REXXINC)
!elseif "$(INT)" == "WINREXX"
REXXLIB = $(WINREXX_REXXLIBS)
REXXINC = $(WINREXX_REXXINC)
!elseif "$(INT)" == "QUERCUS"
REXXLIB = $(QUERCUS_REXXLIBS)
REXXINC = $(QUERCUS_REXXINC)
!elseif "$(INT)" == "UNIREXX"
REXXLIB = $(UNIREXX_REXXLIBS)
REXXINC = $(UNIREXX_REXXINC)
!elseif "$(INT)" == "REXXTRANS"
REXXLIB = $(REXXTRANS_REXXLIBS)
REXXINC = $(REXXTRANS_REXXINC)
!else
!message Rexx Interpreter NOT specified via INT macro
!message Valid values are: REGINA OREXX WINREXX QUERCUS UNIREXX REXXTRANS
!error Make aborted!
!endif
!ifdef TRACE
TRACE_FLAGS = -DTHE_TRACE
TRACE_OBJ = trace.obj
!else
TRACE_FLAGS =
TRACE_OBJ =
!endif
!ifdef DEBUG
CFLAGS = -nologo -c -Od -Zi -FR -DWIN32 -DSTDC_HEADERS -DHAVE_PROTO $(TRACE_FLAGS) -I$(SRC) $(CURSINC) $(REXXINC) -Fo$@
LDEBUG = -debug /map
!else
CFLAGS = -nologo -c -Ox -DWIN32 -DSTDC_HEADERS -DHAVE_PROTO $(TRACE_FLAGS) -I$(SRC) $(CURSINC) $(REXXINC) -Fo$@
LDEBUG = -release
!endif
LD = link
XTRAOBJ = mygetopt.obj
MAN = manext.exe
THERC = $(SRC)\thew32.rc
THERES = thew32.res
THEW32OBJ = thew32.obj
docdir = doc
#########################################################################
#
#
# Object files
#
OBJ1 = box.obj colour.obj comm1.obj comm2.obj comm3.obj comm4.obj comm5.obj \
commset1.obj commset2.obj commsos.obj cursor.obj default.obj \
edit.obj error.obj execute.obj linked.obj column.obj mouse.obj memory.obj \
nonansi.obj prefix.obj reserved.obj scroll.obj show.obj single.obj sort.obj \
target.obj the.obj util.obj parser.obj regex.obj
OBJ2 = commutil.obj print.obj $(TRACE_OBJ)
OBJ3 = getch.obj
OBJ4 = query.obj
OBJ5 = thematch.obj
OBJ6 = directry.obj file.obj
OBJ7 = rexx.obj
OBJ8 =
OBJX = $(XTRAOBJ)
OBJS = $(OBJ1) $(OBJ2) $(OBJ3) $(OBJ4) $(OBJ5) $(OBJ6) $(OBJ7) $(OBJ8) $(OBJX)
#########################################################################
COMM = $(SRC)\comm1.c $(SRC)\comm2.c $(SRC)\comm3.c $(SRC)\comm4.c $(SRC)\comm5.c \
$(SRC)\commsos.c $(SRC)\commset1.c $(SRC)\commset2.c $(SRC)\query.c
APPENDIX = $(SRC)\appendix.1
GLOSSARY = $(SRC)\glossary
all: the.exe dist$(INT)
#
#########################################################################
the.exe: $(OBJS) $(THERES) $(THEW32OBJ)
$(LD) /NOLOGO /VERSION:$(VERDOT) $(LDEBUG) $(OBJS) $(THEOBJ) $(THEW32OBJ) $(SETARGV) -out:the.exe $(CURSLIB) $(REXXLIB) user32.lib gdi32.lib comdlg32.lib winspool.lib
#########################################################################
box.obj: $(SRC)\box.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
colour.obj: $(SRC)\colour.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
comm1.obj: $(SRC)\comm1.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
comm2.obj: $(SRC)\comm2.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
comm3.obj: $(SRC)\comm3.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
comm4.obj: $(SRC)\comm4.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
comm5.obj: $(SRC)\comm5.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
commset1.obj: $(SRC)\commset1.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
commset2.obj: $(SRC)\commset2.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
commsos.obj: $(SRC)\commsos.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
cursor.obj: $(SRC)\cursor.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
default.obj: $(SRC)\default.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
edit.obj: $(SRC)\edit.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
error.obj: $(SRC)\error.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
execute.obj: $(SRC)\execute.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
linked.obj: $(SRC)\linked.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
column.obj: $(SRC)\column.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
mouse.obj: $(SRC)\mouse.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
memory.obj: $(SRC)\memory.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
nonansi.obj: $(SRC)\nonansi.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
prefix.obj: $(SRC)\prefix.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
regex.obj: $(SRC)\regex.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
alloca.obj: $(SRC)\alloca.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
parser.obj: $(SRC)\parser.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
print.obj: $(SRC)\print.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
reserved.obj: $(SRC)\reserved.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
scroll.obj: $(SRC)\scroll.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
show.obj: $(SRC)\show.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
single.obj: $(SRC)\single.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
sort.obj: $(SRC)\sort.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
target.obj: $(SRC)\target.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
the.obj: $(SRC)\the.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
util.obj: $(SRC)\util.c $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
commutil.obj: $(SRC)\commutil.c $(SRC)\the.h $(SRC)\command.h $(SRC)\defines.h $(SRC)\proto.h $(SRC)\getch.h $(SRC)\key.h
$(CC) $(CFLAGS) $(SRC)\$*.c
trace.obj: $(SRC)\trace.c $(SRC)\the.h $(SRC)\command.h $(SRC)\defines.h $(SRC)\proto.h $(SRC)\getch.h $(SRC)\key.h
$(CC) $(CFLAGS) $(SRC)\$*.c
getch.obj: $(SRC)\getch.c $(SRC)\getch.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
query.obj: $(SRC)\query.c $(SRC)\query.h $(SRC)\the.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
thematch.obj: $(SRC)\thematch.c $(SRC)\the.h $(SRC)\thematch.h
$(CC) $(CFLAGS) $(SRC)\$*.c
directry.obj: $(SRC)\directry.c $(SRC)\the.h $(SRC)\directry.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
file.obj: $(SRC)\file.c $(SRC)\the.h $(SRC)\directry.h $(SRC)\defines.h $(SRC)\proto.h
$(CC) $(CFLAGS) $(SRC)\$*.c
rexx.obj: $(SRC)\rexx.c $(SRC)\the.h $(SRC)\therexx.h $(SRC)\proto.h $(SRC)\defines.h $(SRC)\query.h
$(CC) $(CFLAGS) $(SRC)\$*.c
mygetopt.obj: $(SRC)\mygetopt.c
$(CC) $(CFLAGS) $(SRC)\$*.c
$(THERES) $(THEW32OBJ): $(THERC)
copy $(SRC)\thewin.ico
rc /r /fo$(THERES) /i$(SRC) $(THERC)
cvtres /MACHINE:IX86 /NOLOGO /OUT:$(THEW32OBJ) $(THERES)
#
#########################################################################
manual: $(MAN) $(SRC)\overview $(COMM) $(APPENDIX) $(GLOSSARY)
manext $(SRC)\overview $(COMM) $(APPENDIX) $(GLOSSARY) > the.man
#
$(MAN): $(XTRAOBJ) manext.$(OBJ)
$(MANLD)
$(CHMODMAN)
zip:
zip thesrc$(VER) README INSTALL TODO COPYING HISTORY THE_Help.txt
zip thesrc$(VER) overview appendix.1 appendix.2 appendix.3 glossary README.OS2
zip thesrc$(VER) box.c colour.c comm*.c cursor.c default.c directry.c
zip thesrc$(VER) edit.c error.c norexx.c scroll.c column.c execute.c
zip thesrc$(VER) file.c thematch.c getch.c mygetopt.c linked.c mouse.c memory.c
zip thesrc$(VER) nonansi.c os2eas.c prefix.c query.c reserved.c print.c
zip thesrc$(VER) rexx.c show.c single.c sort.c target.c the.c trace.c util.c
zip thesrc$(VER) command.h defines.h directry.h thematch.h getch.h vars.h
zip thesrc$(VER) key.h query.h proto.h therexx.h the.h makefile.dist $(docdir)/*.gif
zip thesrc$(VER) manext.c *.rc *.rsp *.def *.ico *.diz files.rcs the*.xbm icons.zip the.res the.rc the.eas
zip thesrc$(VER) append.the comm.the uncomm.the total.the match.the rm.the
zip thesrc$(VER) words.the l.the compile.the spell.the demo.the demo.txt
zip thesrc$(VER) Makefile.in configure config.h.in $(docdir)/THE_Help*
zip thesrc$(VER) vcwin32.mak wccwin32.mak
zip thesrc$(VER) config.guess config.sub install-sh
zip thesrc$(VER) aclocal.m4 configure.in
zip thesrc$(VER) man2html.rex
#
distREGINA:
-mkdir tmp
cd tmp
copy ..\the.exe .
copy $(SRC)\*.the .
copy $(SRC)\README .
copy $(SRC)\COPYING .
copy $(SRC)\HISTORY .
copy $(SRC)\TODO .
copy $(CURSBIN)\curses.dll .
copy $(REGINA_BIN)\regina.dll .
copy $(SRC)\THE_Help.txt .
copy $(SRC)\demo.txt .
copy $(SRC)\win32.diz file_id.diz
c:\bin\the -b -p $(SRC)\fix.diz -a "$(VER) $(VERDOT) R Regina" file_id.diz
zip the$(VER)R_w32 *
cd ..
distOREXX:
-mkdir tmp
cd tmp
copy ..\the.exe .
copy $(SRC)\*.the .
copy $(SRC)\README .
copy $(SRC)\COPYING .
copy $(SRC)\HISTORY .
copy $(SRC)\TODO .
copy $(CURSBIN)\curses.dll .
copy $(SRC)\THE_Help.txt .
copy $(SRC)\demo.txt .
copy $(SRC)\win32.diz file_id.diz
c:\bin\the -b -p $(SRC)\fix.diz -a "$(VER) $(VERDOT) O IBM Object Rexx" file_id.diz
zip the$(VER)O_w32 *
cd ..
distWINREXX:
-mkdir tmp
cd tmp
copy ..\the.exe .
copy $(SRC)\*.the .
copy $(SRC)\README .
copy $(SRC)\COPYING .
copy $(SRC)\HISTORY .
copy $(SRC)\TODO .
copy $(CURSBIN)\curses.dll .
copy $(SRC)\THE_Help.txt .
copy $(SRC)\demo.txt .
copy $(SRC)\win32.diz file_id.diz
c:\bin\the -b -p $(SRC)\fix.diz -a "$(VER) $(VERDOT) W Enterprise Rexx" file_id.diz
zip the$(VER)W_w32 *
cd ..
distQUERCUS:
-mkdir tmp
cd tmp
copy ..\the.exe .
copy $(SRC)\*.the .
copy $(SRC)\README .
copy $(SRC)\COPYING .
copy $(SRC)\HISTORY .
copy $(SRC)\TODO .
copy $(CURSBIN)\curses.dll .
copy $(SRC)\THE_Help.txt .
copy $(SRC)\demo.txt .
copy $(SRC)\win32.diz file_id.diz
c:\bin\the -b -p $(SRC)\fix.diz -a "$(VER) $(VERDOT) Q Personal Rexx" file_id.diz
zip the$(VER)Q_w32 *
cd ..
distUNIREXX:
-mkdir tmp
cd tmp
copy ..\the.exe .
copy $(SRC)\*.the .
copy $(SRC)\README .
copy $(SRC)\COPYING .
copy $(SRC)\HISTORY .
copy $(SRC)\TODO .
copy $(CURSBIN)\curses.dll .
copy $(SRC)\THE_Help.txt .
copy $(SRC)\demo.txt .
copy $(SRC)\win32.diz file_id.diz
c:\bin\the -b -p $(SRC)\fix.diz -a "$(VER) $(VERDOT) U uni-REXX" file_id.diz
zip the$(VER)U_w32 *
cd ..
distREXXTRANS:
-mkdir tmp
cd tmp
copy ..\the.exe .
copy $(SRC)\*.the .
copy $(SRC)\*.tld .
copy $(SRC)\README .
copy $(SRC)\COPYING .
copy $(SRC)\HISTORY .
copy $(SRC)\TODO .
copy $(CURSBIN)\curses.dll .
copy $(REXXTRANSBIN)\rexxtrans.dll .
copy $(SRC)\THE_Help.txt .
copy $(SRC)\demo.txt .
copy $(SRC)\win32.diz file_id.diz
c:\bin\the -b -p $(SRC)\fix.diz -a "$(VER) $(VERDOT) T any available Rexx interpreter" file_id.diz
zip the$(VER)w32 *
cd ..
|