forked from mbert/elvis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.os2,v
684 lines (576 loc) · 21.8 KB
/
Makefile.os2,v
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
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
head 1.6;
access;
symbols;
locks; strict;
comment @# @;
1.6
date 2003.10.23.23.35.45; author steve; state Exp;
branches;
next 1.5;
1.5
date 2003.10.07.15.44.07; author steve; state Exp;
branches;
next 1.4;
1.4
date 2002.10.27.20.09.34; author steve; state Exp;
branches;
next 1.3;
1.3
date 2002.07.30.17.02.46; author steve; state Exp;
branches;
next 1.2;
1.2
date 2001.10.30.15.49.58; author steve; state Exp;
branches;
next 1.1;
1.1
date 2000.11.02.20.28.13; author steve; state Exp;
branches;
next ;
desc
@OS/2 version of Makefile
@
1.6
log
@Herbert's latest changes.
@
text
@# Makefile for building and installing elvis under OS/2,
# derived from Makefile created by configure for linux.
# Works with GNU make and nmake.
################################################################################
################################################################################
# This is the name of the compiler, along with any flags that should be used
# both for compiling and for linking. Typical values are "cc -g" or "cc -O".
# If you're compiling with X-windows support, you may need to add a
# "-I/usr/X11/include" flag or something similar.
#
# IBM VisualAge C++ 3.0 Compiler:
#
# This used to be the default, but since I've experienced some problems
# with its optimization and due to the lack of further maintenance by
# IBM I now recommend the OpenWatcom compiler which is now the default
# choice if Elvis is built from the `..\makos2.cmd' batch file.
#
CC=icc -O -Q -D__SPC__ -DOS2 -I/Software/ibmcpp/include -I/Software/toolkit/h -I/tcpip/include
#
# Other Compilers:
#
# - OpenWatcom works fine, but for TCP/IP support you will need to create
# import library for `so32dll.dll' and `tcp32dll.dll'. It is now the
# default.
# - gcc is fine with versions prior to 3.2.2 (innotek builds). The latest
# versions still don't work with the X11 interface.
#
################################################################################
# This should be "unix" for all UNIX variants. It causes the compiler to use
# files from the osunix subdirectory, and do a UNIX-style installation.
OS=os2
################################################################################
# This is the separator between a subdirectory name and a file name. For UNIX
# this should always be a "/" character.
SLASH=\\\\
################################################################################
# This macro gives any arguments which will be needed during linking.
# Mostly, this means "-Llibdir" and "-llib" flags. If you're compiling with
# X-windows support, then you'll have to add a "-lX11" and maybe a
# "-L/usr/X11/lib" flag or something similar.
LIBFILES= so32dll.lib tcp32dll.lib
DEFFILE= os$(OS)$(SLASH)elvis.def
PMDEFFILE= os$(OS)$(SLASH)pmelvis.def
################################################################################
# This is a command for compiling files in a subdirectory, and placing the
# resultant object files in the current directory. Most UNIX compilers behave
# this way naturally, so you probably won't need to modify this.
OSCC=$(CC) -I. $(CFLAGS) $(FLAGC)
################################################################################
# This is the file name extension for object files. For UNIX, this is almost
# always ".o"
OBJ=.obj
################################################################################
# This is the file name extension for executable files. For UNIX, this is
# always a null string because UNIX doesn't use file name extensions to mark
# executable files.
EXE=.exe
################################################################################
# This is the shell command which is used for deleting a file if it exists.
RM=cmd /c del
################################################################################
# This is the shell command which is used for deleting a directory if it exists.
RD=cmd /c rd
################################################################################
# This is the shell command which is used for creating a directory
MD=cmd /c md
################################################################################
# This is the shell command which is used for listing a file's content
CAT=cmd /c type
################################################################################
# This is the compiler flag which causes compilation but not linking. For
# most UNIX compilers, this is "-c".
FLAGC=-c
################################################################################
# This is the compiler flag which specifies the output file name. For most
# UNIX compilers, this is "-o". Note that there should be a space after the
# "-o" like "-o "!
FLAGO=-fe
################################################################################
# This is the compiler flag for adding a directory to the list of directories
# to be searched for #include files. For most UNIX compilers, this is "-I".
FLAGI=-I
################################################################################
# This is a list of programs to be created by "make all". The possible list
# includes elvis$(EXE), ref$(EXE), ctags$(EXE), and fmt$(EXE). The $(EXE) on
# the end is just in case this Makefile is reconfigured for an operating
# system which requires the EXE macro to be something like ".exe".
ALL=elvis$(EXE) vi$(EXE) ex$(EXE) ref$(EXE) ctags$(EXE) fmt$(EXE)
################################################################################
# The Elvis manual in INF format. This is done by a number of batch files
# in the manual subdirectory.
MANUAL=doc\\elvis.INF
################################################################################
# This is the directory where "make install" will place the executable programs
BINDIR=e:\usr\bin
################################################################################
# This is the directory where "make install" will place elvis' support files,
# such as the help text and the default initialization scripts. If you change
# the value here, then you also need to change it in "config.h"
LIBDIR=e:\usr\elvis
################################################################################
# This is the shell command for copying one file to another
CP=cmd /c copy
###############################################################################
###############################################################################
###############################################################################
########### ###########
########### S T O P ! ###########
########### ###########
########### You shouldn't need to modify anything below this line ###########
########### ###########
###############################################################################
###############################################################################
###############################################################################
###############################################################################
# Portable compilation rules
# Herbert 1997:
# Needed this for nmake compatibility...
.SUFFIXES:
.SUFFIXES: $(OBJ) $(EXE) .c
.c$(OBJ):
$(OSCC) $<
MISC= BUGS README.html COPYING INSTALL Makefile.in configure instman.sh\
insticon.sh elvis.lsm makwin32.bat makmsdos.bat makos2.cmd e2
OSSRCS= os$(OS)$(SLASH)osblock.c os$(OS)$(SLASH)osdir.c\
os$(OS)$(SLASH)osprg.c os$(OS)$(SLASH)ostext.c\
os$(OS)$(SLASH)osnet.c os$(OS)$(SLASH)tcaphelp.c\
os$(OS)$(SLASH)debug.c
OSOBJS= osblock$(OBJ) osdir$(OBJ) osprg$(OBJ) ostext$(OBJ) osnet$(OBJ) \
debug$(OBJ)
OSOBJS2=tcaphelp$(OBJ)
OSHDRS= os$(OS)$(SLASH)osdef.h
XBM= guix11/elvis.xbm guix11/elvispin.xbm guix11/gray.xbm
X11SRCS=guix11/guix11.c guix11/xclip.c guix11/xevent.c guix11/xmisc.c\
guix11/xscroll.c guix11/xstatus.c guix11/xtext.c guix11/xtool.c \
guix11/xdialog.c
X11OBJS=guix11$(OBJ) xclip$(OBJ) xevent$(OBJ) xmisc$(OBJ) xscroll$(OBJ)\
xstatus$(OBJ) xtext$(OBJ) xtool$(OBJ) xdialog$(OBJ)
GUISRCS=$(X11SRCS) guicurs.c guitcap.c guiopen.c os$(OS)$(SLASH)guivio.c
GUIOBJS=$(X11OBJS) guicurs$(OBJ) guitcap$(OBJ) guiopen$(OBJ) guivio$(OBJ)
LPSRCS= lpescape.c lpovrtyp.c lpps.c
LPOBJS= lpescape$(OBJ) lpovrtyp$(OBJ) lpps$(OBJ)
HDRS= $(OSHDRS) buffer.h buffer2.h calc.h color.h cut.h descr.h digraph.h\
display.h display2.h draw.h draw2.h elvis.h elvisio.h event.h ex.h\
gui.h gui2.h input.h lowbuf.h lp.h map.h mark.h message.h message2.h\
misc.h more.h move.h need.h operator.h opsys.h optglob.h options.h\
regexp.h region.h safe.h scan.h session.h spell.h state.h state2.h\
tag.h tagsrch.h tagelvis.h version.h vi.h vicmd.h window.h config.h
SRCS= $(OSSRCS) $(GUISRCS) $(LPSRCS) buffer.c calc.c color.c cut.c descr.c\
digraph.c display.c dmhex.c dmmarkup.c dmnormal.c dmsyntax.c draw.c\
event.c ex.c exaction.c exconfig.c exedit.c exmake.c exsubst.c fold.c\
ftp.c gui.c http.c input.c io.c lowbuf.c lp.c map.c mark.c message.c\
misc.c more.c move.c need.c operator.c optglob.c options.c regexp.c\
region.c regsub.c safe.c scan.c search.c session.c spell.c state.c\
tag.c tagsrch.c tagelvis.c url.c vi.c vicmd.c window.c
OBJ1= $(OSOBJS) optglob$(OBJ) options$(OBJ) safe$(OBJ) session$(OBJ)
OBJ2= buffer$(OBJ) calc$(OBJ) color$(OBJ) descr$(OBJ) digraph$(OBJ)\
display$(OBJ) gui$(OBJ) lowbuf$(OBJ) mark$(OBJ) misc$(OBJ) io$(OBJ)\
dmhex$(OBJ) dmmarkup$(OBJ) dmnormal$(OBJ) dmsyntax$(OBJ) scan$(OBJ)
OBJ3= $(OSOBJS2) cut$(OBJ) draw$(OBJ) event$(OBJ) ex$(OBJ) exaction$(OBJ)\
exconfig$(OBJ) exedit$(OBJ) exmake$(OBJ) exsubst$(OBJ) fold$(OBJ)\
ftp$(OBJ) http$(OBJ) input$(OBJ) lp$(OBJ) map$(OBJ) message$(OBJ)\
move$(OBJ) more$(OBJ) need$(OBJ) operator$(OBJ) regexp$(OBJ)\
region$(OBJ) regsub$(OBJ) search$(OBJ) spell$(OBJ) state$(OBJ)\
tinytcap$(OBJ) tag$(OBJ) tagsrch$(OBJ) tagelvis$(OBJ) url$(OBJ)\
vi$(OBJ) vicmd$(OBJ) window$(OBJ) autocmd$(OBJ)
OBJS= $(OBJ1) $(OBJ2) $(OBJ3)
REFOBJS=ref$(OBJ) tag$(OBJ) tagsrch$(OBJ) safe$(OBJ)
CTOBJS= ctags$(OBJ) tag$(OBJ) safe$(OBJ)
CFLAGS= $(FLAGI)os$(OS)
#LDFLAGS= -B"/DEBUG"
# Herbert 1998: Targets calc and verify do not work yet!
EVERY= $(ALL) elvdump$(EXE) calc$(EXE) verify$(EXE)
# Herbert 1998: SHELL needs to be blanked out under OS/2 if using GNU make.
#SHELL= /bin/sh
VERSION=2.2_0
DISTRIB=elvis-$(VERSION)
DOSEXE=exedos
WIN32EXE=exewin32
OS2EXE=exeos2
all: $(OS2EXE) $(ALL)
every: $(OS2EXE) $(EVERY)
$(OS2EXE): ; mkdir $(OS2EXE)
# The manual converted from the HTML documentation to OS/2's INF...
$(MANUAL):
cd osos2\\manual && h2i-guide.cmd
$(CP) osos2\\manual\\elvis.INF $(MANUAL)
# Elvis compiled for a.out format and linked against emx.dll...
emx: ; $(MAKE) elvisemx.exe -f osos2\\Makefile.os2 "OBJ=.o" "EXE=emx.exe" \
"CC=gcc -Wall -DOS2 -D__WITH_TERMCAP -O3 \
-I/emx/include -I/software/ibmcpp/include \
-I/software/ibmcpp/include/os2" \
"LIBFILES=-L/usr/lib/tcpipv4 -lsocket -ltermcap" \
"FLAGO=-o "
# Elvis compiled for a.out format and linked against emx.dll with x11...
debug: ; $(MAKE) -f osos2\\Makefile.os2 "OBJ=.o" "EXE=x11.exe" \
"CC=gcc -g -Wall -DOS2 -D__WITH_TERMCAP -O3 \
-Zmtd -D__D_ST_MT_ERRNO__ -D__WITH_X11" \
"FLAGO=-o " "LIBFILES=-L/usr/lib/x11 \
-L/usr/lib/tcpipv4 -lsocket -ltermcap -lx11"
# Elvis compiled for a.out format and linked against emx.dll with x11...
x11: ; $(MAKE) elvisx11.exe -f osos2\\Makefile.os2 "OBJ=.o" "EXE=x11.exe" \
"CC=gcc -Wall -DOS2 -D__WITH_TERMCAP -O3 \
-Zmtd -D__D_ST_MT_ERRNO__ -D__WITH_X11 \
-I/usr/include -I/emx/include" "FLAGO=-o " \
"LIBFILES=-L/usr/lib/x11 -L/usr/lib/tcpipv4 \
-lsocket -ltermcap -lx11"
gcc: ; $(MAKE) -f osos2\\Makefile.os2 "EXE=gcc.exe" "FLAGO=-o " "OBJ=.o" \
"CC=gcc -Wall -DOS2 -Zomf -O3 -I/emx/include" \
"LIBFILES=-L/usr/lib/x11 -L/usr/lib/tcpipv4 -lsocket"
wcc: ; $(MAKE) -f osos2\\Makefile.os2 "FLAGO=-fe=" "OBJ=.obj" \
"CC=wcl386 -zq -otexan -I\\tcpip\\include -dexplicit=expl"\
"LIBFILES=so32dll.lib tcp32dll.lib" DEFFILE=""
wcc-no-tcp: ; $(MAKE) elvis-no-tcp$(EXE) -f osos2\\Makefile.os2 "FLAGO=-fe=" \
"CC=wcl386 -zq -otexan -I\\tcpip\\include -dexplicit=expl"\
LIBFILES="" DEFFILE=""
elvis$(EXE): $(HDRS) main$(OBJ) $(OBJS) $(GUIOBJS) $(LPOBJS)
$(CC) $(CFLAGS) $(LDFLAGS) main$(OBJ) $(OBJS) $(GUIOBJS) $(LPOBJS) $(LIBFILES) $(DEFFILE) $(FLAGO)elvis$(EXE)
$(CP) elvis$(EXE) $(OS2EXE)
$(RM) elvis$(EXE)
pmelvis$(EXE): $(HDRS) main$(OBJ) $(OBJS) $(GUIOBJS) $(LPOBJS)
$(CC) $(CFLAGS) $(LDFLAGS) main$(OBJ) $(OBJS) $(GUIOBJS) $(LPOBJS) $(LIBFILES) $(PMDEFFILE) $(FLAGO)pmelvis$(EXE)
elvis-no-tcp$(EXE): $(HDRS) main$(OBJ) $(OBJS) $(GUIOBJS) $(LPOBJS)
$(CC) $(CFLAGS) $(LDFLAGS) main$(OBJ) $(OBJS) $(GUIOBJS) $(LPOBJS) $(DEFFILE) $(FLAGO)elvis-no-tcp$(EXE)
$(CP) elvis-no-tcp$(EXE) $(OS2EXE)
$(RM) elvis-no-tcp$(EXE)
vi$(EXE): alias.c
$(CC) $(CFLAGS) $(LDFLAGS) -DARGV0=VI alias.c $(FLAGO)vi$(EXE)
$(CP) vi$(EXE) $(OS2EXE)
$(RM) vi$(EXE)
ex$(EXE): alias.c
$(CC) $(CFLAGS) $(LDFLAGS) -DARGV0=EX alias.c $(FLAGO)ex$(EXE)
$(CP) ex$(EXE) $(OS2EXE)
$(RM) ex$(EXE)
view$(EXE): alias.c
$(CC) $(CFLAGS) $(LDFLAGS) -DARGV0=VIEW alias.c $(FLAGO)view$(EXE)
ctags$(EXE): $(CTOBJS)
$(CC) $(CFLAGS) $(LDFLAGS) $(CTOBJS) $(FLAGO)ctags$(EXE)
$(CP) ctags$(EXE) $(OS2EXE)
$(RM) ctags$(EXE)
ref$(EXE): $(REFOBJS)
$(CC) $(CFLAGS) $(LDFLAGS) $(REFOBJS) $(FLAGO)ref$(EXE)
$(CP) ref$(EXE) $(OS2EXE)
$(RM) ref$(EXE)
fmt$(EXE): fmt.c os$(OS)$(SLASH)osdir.c
$(CC) $(CFLAGS) $(LDFLAGS) fmt.c $(FLAGO)fmt$(EXE)
$(CP) fmt$(EXE) $(OS2EXE)
$(RM) fmt$(EXE)
verify$(EXE): $(HDRS) verify$(OBJ) $(OBJ1) $(OBJ2)
$(CC) $(CFLAGS) $(LDFLAGS) verify$(OBJ) $(OBJS) $(LIBFILES) $(FLAGO)verify$(EXE)
elvdump$(EXE): $(HDRS) elvdump$(OBJ) $(OBJ1)
$(OSCC) -DELVDUMP os$(OS)$(SLASH)osdir.c
$(CC) $(CFLAGS) $(LDFLAGS) elvdump$(OBJ) $(OBJ1) $(LIBFILES) $(FLAGO)elvdump$(EXE)
touch os$(OS)$(SLASH)osdir.c
calc$(EXE): $(HDRS) calc.c
$(CC) $(CFLAGS) $(LDFLAGS) -DTRY os$(OS)$(SLASH)getopt.c calc.c $(FLAGO)calc$(EXE)
###############################################################################
# Rules for os-dependent files
osblock$(OBJ): os$(OS)$(SLASH)osblock.c
$(OSCC) os$(OS)$(SLASH)osblock.c
osdir$(OBJ): os$(OS)$(SLASH)osdir.c
$(OSCC) os$(OS)$(SLASH)osdir.c
osprg$(OBJ): os$(OS)$(SLASH)osprg.c
$(OSCC) os$(OS)$(SLASH)osprg.c
ostext$(OBJ): os$(OS)$(SLASH)ostext.c
$(OSCC) os$(OS)$(SLASH)ostext.c
osnet$(OBJ): os$(OS)$(SLASH)osnet.c
$(OSCC) os$(OS)$(SLASH)osnet.c
tcaphelp$(OBJ): os$(OS)$(SLASH)tcaphelp.c
$(OSCC) os$(OS)$(SLASH)tcaphelp.c
guivio$(OBJ): os$(OS)$(SLASH)guivio.c
$(OSCC) os$(OS)$(SLASH)guivio.c
debug$(OBJ): os$(OS)$(SLASH)debug.c
$(OSCC) os$(OS)$(SLASH)debug.c
###############################################################################
# Rules for GUI-dependent files. Note that we can't really generalize here
# as well as we could for OS-dependent files, because different GUIs may be
# broken down differently.
guix11$(OBJ): guix11/guix11.c $(XBM)
$(OSCC) guix11$(SLASH)guix11.c
xclip$(OBJ): guix11/xclip.c
$(OSCC) guix11$(SLASH)xclip.c
xevent$(OBJ): guix11/xevent.c
$(OSCC) guix11$(SLASH)xevent.c
xmisc$(OBJ): guix11/xmisc.c
$(OSCC) guix11$(SLASH)xmisc.c
xscroll$(OBJ): guix11/xscroll.c
$(OSCC) guix11$(SLASH)xscroll.c
xstatus$(OBJ): guix11/xstatus.c
$(OSCC) guix11$(SLASH)xstatus.c
xtext$(OBJ): guix11/xtext.c
$(OSCC) guix11$(SLASH)xtext.c
xtool$(OBJ): guix11/xtool.c
$(OSCC) guix11$(SLASH)xtool.c
xdialog$(OBJ): guix11/xdialog.c
$(OSCC) guix11$(SLASH)xdialog.c
###############################################################################
# Handy commands
clean: clean.$(OS)
clean.unix:
$(RM) *$(OBJ)
$(RM) core
$(RM) errlist
$(RM) verify.elv
$(RM) $(DISTRIB).tar.gz
clean.msdos:
$(RM) *$(OBJ)
clean.os2:
$(RM) *$(OBJ)
clobber: clean
$(RM) $(EVERY)
$(RM) tags
$(RM) detail
$(RM) .elv*
$(RM) foo
$(RM) stderr
$(DISTRIB)-os2.tar.gz: $(OS2EXE)
-$(RM) bin-os2\\data\\*
-$(RD) bin-os2\\data
-$(RM) bin-os2\\doc\\*
-$(RD) bin-os2\\doc
-$(RM) bin-os2\\*
-$(RD) bin-os2
-$(MD) bin-os2
$(CP) $(OS2EXE)\\*.exe bin-os2
$(CP) osos2\\*.ico bin-os2
tar cvf - data doc | tar -C bin-os2 -xvf -
$(CAT) README.html >bin-os2\\README.html
$(CAT) BUGS >bin-os2\\BUGS
$(CAT) COPYING >bin-os2\\COPYING
$(CAT) doc\\printdoc.bat >bin-os2\\doc\\printdoc.bat
(cd bin-os2 && tar cvf ..\\$(DISTRIB)-os2.tar * && gzip ..\\$(DISTRIB)-os2.tar)
doc$(SLASH)elvistrs.msg: $(SRCS)
sed -n '/%[cds]/d; /[a-z]:/d; s/\[[a-zA-Z]*\]//; s/\\\\/\\/g; s/.*msg(MSG_[A-Z]*, "\([^ "][^"]*\)".*/\1/p' *.c os*$(SLASH)*.c | sort -u >doc$(SLASH)elvistrs.msg
@
1.5
log
@Tweaks from Herbert since 2.2i-beta.
Changed version number to 2.2
@
text
@a0 2
################################################################################
# Herbert 1998:
d11 20
a30 1
CC=icc -O -Q -DOS2 -I/work/ibmcpp/include -I/usr/include -I/tcpip/include
d192 1
a192 1
vi$(OBJ) vicmd$(OBJ) window$(OBJ)
d202 1
a202 1
VERSION=2.2
d224 2
a225 1
"LIBFILES=-lsocket -ltermcap" "FLAGO=-o "
d231 2
a232 2
"FLAGO=-o " \
"LIBFILES=-L/usr/lib/x11 -lsocket -ltermcap -lx11"
d239 14
a252 1
"LIBFILES=-L/usr/lib/x11 -lsocket -ltermcap -lx11"
a253 4
gcc: ; $(MAKE) -f osos2\\Makefile.os2 "EXE=gcc.exe" "FLAGO=-o " \
"CC=gcc -Wall -DOS2 -Zsys -Zomf -O3 -I/emx/include" \
"LIBFILES="
d340 1
a340 1
$(OSCC) guix11/guix11.c
d343 1
a343 1
$(OSCC) guix11/xclip.c
d346 1
a346 1
$(OSCC) guix11/xevent.c
d349 1
a349 1
$(OSCC) guix11/xmisc.c
d352 1
a352 1
$(OSCC) guix11/xscroll.c
d355 1
a355 1
$(OSCC) guix11/xstatus.c
d358 1
a358 1
$(OSCC) guix11/xtext.c
d361 1
a361 1
$(OSCC) guix11/xtool.c
d364 1
a364 1
$(OSCC) guix11/xdialog.c
@
1.4
log
@Changed the version number to 2.2i-beta
@
text
@d53 13
a65 1
RM=del
d94 1
a94 1
MANUAL=lib\\elvis.INF
d108 1
a108 1
CP=copy
d185 2
a186 1
DISTRIB=elvis-2.2i
a364 65
tmp:
$(RM) /var/tmp/elvis*.ses
$(RM) core
sure: verify
$(RM) verify.elv
verify >detail || gdb verify core
wc: $(SRCS) $(HDRS)
wc $(SRCS) $(HDRS) | sort -n
tags: $(SRCS) $(HDRS)
ctags $(SRCS) $(HDRS)
ciall: $(SRCS) $(HDRS)
ci -u$(REV) Makefile $(SRCS) $(HDRS)
cinever:
@@for i in *.[ch]; do [ -f RCS/$$i,v ] || echo $$i; done
@@for i in os*/.; do (cd $$i; for j in *.[ch]; do [ -f $$j,v -o -f RCS/$$j,v ] || echo $$i/$$j; done); done
@@for i in gui*/.; do (cd $$i; for j in *.[ch]; do [ -f $$j,v -o -f RCS/$$j,v ] || echo $$i/$$j; done); done
$(DISTRIB).tar.gz:
rm -rf $(DISTRIB)
mkdir $(DISTRIB)
mkdir $(DISTRIB)/lib
for i in os*; do if [ -d $$i ]; then mkdir $(DISTRIB)/$$i; fi; done
for i in gui*; do if [ -d $$i ]; then mkdir $(DISTRIB)/$$i; fi; done
cp *.c *.h $(MISC) $(DISTRIB)
rm -f $(DISTRIB)/sample.c
cp lib/* $(DISTRIB)/lib
for i in os*/*.c os*/*.h os*/*.mak os*/*.lib os*/*.ICO osos2/*.def osos2/*os2*; do cp $$i $(DISTRIB)/$$i; done
for i in gui*/*; do if [ -f $$i ]; then cp $$i $(DISTRIB)/$$i; fi; done
rm -f $(DISTRIB)/osunix/osconfig.h
rm -f $(DISTRIB)/config.h
rm -f $(DISTRIB)/Makefile
tar czf $(DISTRIB).tar.gz $(DISTRIB)
rm -rf $(DISTRIB)
$(DISTRIB)-win32.tar.gz: $(WIN32EXE)
rm -rf bin-win32
mkdir bin-win32
cp $(WIN32EXE)/*.exe bin-win32
sed 's/$$//' <README.html >bin-win32/README.html
sed 's/$$//' <BUGS >bin-win32/BUGS
sed 's/$$//' <COPYING >bin-win32/COPYING
mkdir bin-win32/lib
cp lib/* bin-win32/lib
sed 's/$$//' <lib/printdoc.bat >bin-win32/lib/printdoc.bat
sed 's/$$//' <lib/license >bin-win32/lib/license
(cd bin-win32; tar czf ../$(DISTRIB)-win32.tar.gz *)
$(DISTRIB)-msdos.tar.gz: $(DOSEXE)
rm -rf bin-msdos
mkdir bin-msdos
cp $(DOSEXE)/*.exe bin-msdos
sed 's/$$//' <README.html >bin-msdos/README.html
sed 's/$$//' <BUGS >bin-msdos/BUGS
sed 's/$$//' <COPYING >bin-msdos/COPYING
mkdir bin-msdos/lib
cp lib/* bin-msdos/lib
sed 's/$$//' <lib/printdoc.bat >bin-msdos/lib/printdoc.bat
sed 's/$$//' <lib/license >bin-win32/lib/license
(cd bin-msdos; tar czf ../$(DISTRIB)-msdos.tar.gz *)
d366 14
a379 10
rm -rf bin-os2
mkdir bin-os2
cp $(OS2EXE)\\*.exe bin-os2
mkdir bin-os2\\lib
cp -r lib/* bin-os2\\lib
type README.html >bin-os2\\README.html
type BUGS >bin-os2\\BUGS
type COPYING >bin-os2\\COPYING
type lib\\printdoc.bat >bin-os2\\lib\\printdoc.bat
type lib\\license >bin-os2\\lib\\license
d382 2
a383 2
lib$(SLASH)elvistrs.msg: $(SRCS)
sed -n '/%[cds]/d; /[a-z]:/d; s/\[[a-zA-Z]*\]//; s/\\\\/\\/g; s/.*msg(MSG_[A-Z]*, "\([^ "][^"]*\)".*/\1/p' *.c os*$(SLASH)*.c | sort -u >lib$(SLASH)elvistrs.msg
@
1.3
log
@OS/2 changes from Herbert.
@
text
@d173 1
a173 1
DISTRIB=elvis-2.2h
@
1.2
log
@From Herbert: change the DISTRIB macro to "elvis-2.2f"
@
text
@d173 1
a173 1
DISTRIB=elvis-2.2f
d422 1
a422 1
cp lib/* bin-os2\\lib
@
1.1
log
@Initial revision
@
text
@d144 2
a145 2
regexp.h safe.h scan.h session.h spell.h state.h state2.h tag.h\
tagsrch.h tagelvis.h version.h vi.h vicmd.h window.h config.h
d151 2
a152 2
regsub.c safe.c scan.c search.c session.c spell.c state.c tag.c \
tagsrch.c tagelvis.c url.c vi.c vicmd.c window.c
d161 3
a163 3
regsub$(OBJ) search$(OBJ) spell$(OBJ) state$(OBJ) tinytcap$(OBJ)\
tag$(OBJ) tagsrch$(OBJ) tagelvis$(OBJ) url$(OBJ) vi$(OBJ) vicmd$(OBJ)\
window$(OBJ)
d173 1
a173 1
DISTRIB=elvis-2.1_4
@