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
|
# Makefile.in
# $Id: Makefile.in,v 2.65 1999/10/20 18:30:01 steve Exp $
#
# Makefile.in should not be modified! The "configure" script reads Makefile.in
# and writes a customized Makefile by editing the values of the following
# macros. If the "configure" script doesn't support your version of UNIX,
# I suggest you do a plain "configure unix" and then hand-edit the resulting
# Makefile. That will also create a "config.h" file which may require some
# tweaking.
################################################################################
# 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.
#CC=gcc -g -Wall -pedantic -Wtraditional -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes
CC=cc -O
################################################################################
# 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.
LIBS=-ltermcap
################################################################################
# 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=unix
################################################################################
# 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 separator between a subdirectory name and a file name. For UNIX
# this should always be a "/" character.
SLASH=/
################################################################################
# This is the file name extension for object files. For UNIX, this is almost
# always ".o"
OBJ=.o
################################################################################
# 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=
################################################################################
# This is the shell command which is used for deleting a file if it exists.
# The "-f" causes "rm" to be silent if the file doesn't exist.
RM=rm -f
################################################################################
# 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 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), elvtags$(EXE), and fmt$(EXE).
# ctags and elvtags are the same program under different names. 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) ref$(EXE) elvtags$(EXE)
################################################################################
# This is the directory where "make install" will place the executable programs
BINDIR=/usr/local/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=/usr/local/lib/elvis
################################################################################
# This is the shell command for copying one file to another
CP=cp
###############################################################################
###############################################################################
###############################################################################
########### ###########
########### S T O P ! ###########
########### ###########
########### You shouldn't need to modify anything below this line ###########
########### ###########
###############################################################################
###############################################################################
###############################################################################
###############################################################################
# Portable compilation rules
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
OSOBJS= osblock$(OBJ) osdir$(OBJ) osprg$(OBJ) ostext$(OBJ) osnet$(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
GUIOBJS=$(X11OBJS) guicurs$(OBJ) guitcap$(OBJ) guiopen$(OBJ)
LPSRCS= lpescape.c lpovrtyp.c lpps.c
LPOBJS= lpescape$(OBJ) lpovrtyp$(OBJ) lpps$(OBJ)
HDRS= $(OSHDRS) buffer.h buffer2.h calc.h cut.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 safe.h\
scan.h session.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 cut.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 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 regsub.c\
safe.c scan.c search.c session.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) 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) ftp$(OBJ)\
http$(OBJ) input$(OBJ) lp$(OBJ) map$(OBJ) message$(OBJ) move$(OBJ)\
more$(OBJ) need$(OBJ) operator$(OBJ) regexp$(OBJ) regsub$(OBJ)\
search$(OBJ) state$(OBJ) tinytcap$(OBJ) tag$(OBJ) tagsrch$(OBJ)\
tagelvis$(OBJ) url$(OBJ) vi$(OBJ) vicmd$(OBJ) window$(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)
EVERY= $(ALL) verify$(EXE) elvdump$(EXE) calc$(EXE)
SHELL= /bin/sh
DISTRIB=elvis-2.1_4
MSDOSEXE=exemsdos
WIN32EXE=exewin32
OS2EXE=exeos2
all: $(ALL)
every: $(EVERY)
elvis$(EXE): $(HDRS) main$(OBJ) $(OBJS) $(GUIOBJS) $(LPOBJS)
$(CC) $(CFLAGS) main$(OBJ) $(OBJS) $(GUIOBJS) $(LPOBJS) $(LIBS) -o elvis$(EXE)
ctags$(EXE): $(CTOBJS)
$(CC) $(CFLAGS) $(CTOBJS) -o ctags$(EXE)
elvtags$(EXE): ctags$(EXE)
$(CP) ctags$(EXE) elvtags$(EXE)
sed 's/\<CTAGS\>/ELVTAGS/g; s/\<ctags\>/elvtags/g' lib/ctags.man >lib/elvtags.man
ref$(EXE): $(REFOBJS)
$(CC) $(CFLAGS) $(REFOBJS) -o ref$(EXE)
fmt$(EXE): fmt.c os$(OS)$(SLASH)osdir.c
$(CC) $(CFLAGS) fmt.c -o fmt$(EXE)
verify$(EXE): $(HDRS) verify$(OBJ) $(OBJ1) $(OBJ2)
$(CC) $(CFLAGS) verify$(OBJ) $(OBJ1) $(OBJ2) -o verify$(EXE)
elvdump$(EXE): $(HDRS) elvdump$(OBJ) $(OBJ1)
$(CC) $(CFLAGS) elvdump$(OBJ) $(OBJ1) -o elvdump$(EXE)
calc: $(HDRS) calc.c
$(CC) $(CFLAGS) -DTRY calc.c -o calc
###############################################################################
# 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
###############################################################################
# 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/guix11.c
xclip$(OBJ): guix11/xclip.c
$(OSCC) guix11/xclip.c
xevent$(OBJ): guix11/xevent.c
$(OSCC) guix11/xevent.c
xmisc$(OBJ): guix11/xmisc.c
$(OSCC) guix11/xmisc.c
xscroll$(OBJ): guix11/xscroll.c
$(OSCC) guix11/xscroll.c
xstatus$(OBJ): guix11/xstatus.c
$(OSCC) guix11/xstatus.c
xtext$(OBJ): guix11/xtext.c
$(OSCC) guix11/xtext.c
xtool$(OBJ): guix11/xtool.c
$(OSCC) guix11/xtool.c
xdialog$(OBJ): guix11/xdialog.c
$(OSCC) guix11/xdialog.c
###############################################################################
# Handy commands
clean: clean.$(OS)
clean.unix:
$(RM) *$(OBJ)
$(RM) core
$(RM) errlist
$(RM) verify.elv
$(RM) $(DISTRIB).tar.gz
$(RM) lib/elvtags.man
$(RM) $(MSDOSEXE)/*
$(RM) $(WIN32EXE)/*
$(RM) $(OS2EXE)/*
clean.msdos:
$(RM) *$(OBJ)
clobber: clean
$(RM) $(EVERY)
$(RM) tags
$(RM) detail
$(RM) .elv*
$(RM) foo
$(RM) stderr
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
mkdir $(DISTRIB)/osos2/manual
mkdir $(DISTRIB)/osos2/manual/org
cp osos2/manual/*.ed osos2/manual/*.cmd $(DISTRIB)/osos2/manual/
rm -f $(DISTRIB)/osunix/osconfig.h
rm -f $(DISTRIB)/config.h
rm -f $(DISTRIB)/Makefile
rm -f $(DISTRIB)/lib/elvtags.man
tar czf $(DISTRIB).tar.gz $(DISTRIB)
rm -rf $(DISTRIB)
$(DISTRIB)-win32.tar.gz: $(WIN32EXE)
@[ -f $(WIN32EXE)/elvis.exe ] || (echo "You need to copy the *.exe files into $(WIN32EXE)"; exit 2)
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 *)
rm -rf bin-win32
$(DISTRIB)-msdos.tar.gz: $(MSDOSEXE)
@[ -f $(MSDOSEXE)/elvis.exe ] || (echo "You need to copy the *.exe files into $(MSDOSEXE)"; exit 2)
rm -rf bin-msdos
mkdir bin-msdos
cp $(MSDOSEXE)/*.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-msdos/lib/license
(cd bin-msdos; tar czf ../$(DISTRIB)-msdos.tar.gz *)
rm -rf bin-msdos
$(DISTRIB)-os2.tar.gz: $(OS2EXE)
@[ -f $(OS2EXE)/elvis.exe ] || (echo "You need to copy the *.exe files into $(OS2EXE)"; exit 2)
rm -rf bin-os2
mkdir bin-os2
cp $(OS2EXE)/*.exe bin-os2
sed 's/$$/
/' <README.html >bin-os2/README.html
sed 's/$$/
/' <BUGS >bin-os2/BUGS
sed 's/$$/
/' <COPYING >bin-os2/COPYING
mkdir bin-os2/lib
cp lib/* bin-os2/lib/
sed 's/$$/
/' <lib/printdoc.bat >bin-os2/lib/printdoc.bat
sed 's/$$/
/' <lib/printdoc.bat >bin-os2/lib/printdoc.cmd
sed 's/$$/
/' <lib/license >bin-os2/lib/license
cp osos2/elvis.INF bin-os2/lib/
mkdir bin-os2/osos2
cp osos2/README.os2 bin-os2/osos2/
(cd bin-os2; tar czf ../$(DISTRIB)-os2.tar.gz *)
rm -rf bin-os2
lib$(SLASH)elvistrs.msg: $(SRCS)
sed -n '/%[cds]/d; s/\[[a-zA-Z]*\]//; s/\\\\/\\/g; s/.*msg(MSG_[A-Z]*, "\([^ "][^"]*\)".*/\1/p' *.c os*$(SLASH)*.c gui*$(SLASH)*.c | sort -u >lib$(SLASH)elvistrs.msg
###############################################################################
install: install.$(OS)
install.unix: $(ALL)
rm -f lib/*.bak
cp $(ALL) $(BINDIR)
(cd $(BINDIR); chmod 0755 $(ALL))
mkdir -p $(LIBDIR) || test -d $(LIBDIR) || mkdir $(LIBDIR)
rm -f $(LIBDIR)/elvis*.
cp -a lib/* $(LIBDIR)
(cd lib; for i in *; do chmod 0644 ../$(LIBDIR)/$$i; done)
sh insticon.sh
sh instman.sh -b$(BINDIR) $(ALL)
###############################################################################
uninstall: uninstall.$(OS)
uninstall.unix:
(cd $(BINDIR); $(RM) $(ALL))
(cd lib; for i in *; do $(RM) $(LIBDIR)/$$i; done)
-rmdir $(LIBDIR)
sh insticon.sh -r
sh instman.sh -r -b$(BINDIR) $(ALL)
|