Makefile.std revision 59243
159243Sobrien# $Id: Makefile.std,v 1.88 1998/10/02 10:56:47 christos Exp $
259243Sobrien#	Makefile.std	4.3	6/11/83
359243Sobrien#
459243Sobrien# C Shell with process control; VM/UNIX VAX Makefile
559243Sobrien# Bill Joy UC Berkeley; Jim Kulp IIASA, Austria
659243Sobrien#
759243Sobrien# With an input editor, command completion, etc. and ported to all sorts of
859243Sobrien# things; Paul Placeway, CIS Dept., Ohio State University
959243Sobrien#
1059243SobrienSHELL=/bin/sh
1159243SobrienVERSION=6.08
1259243SobrienBUILD=tcsh
1359243Sobriensrcdir=.
1459243Sobrien
1559243Sobrien################################################################
1659243Sobrien## CFLAGS.  For various -D things, see config.h
1759243Sobrien################################################################
1859243Sobrien#
1959243Sobrien# These are the default suffixes from .c to .o and -c to get there
2059243Sobrien# but to use the global optimizer on the mips boxes, see below
2159243Sobrien#
2259243SobrienSUF=o
2359243SobrienCF=-c
2459243Sobrien
2559243SobrienINCLUDES=-I. -I$(srcdir)
2659243Sobrien
2759243SobrienLFLAGS=$(INCLUDES)
2859243Sobrien#LFLAGS=$(INCLUDES) -Zn10000		# hpux lint
2959243Sobrien
3059243Sobrien
3159243Sobrien#CFLAGS= $(INCLUDES) -g			# debug
3259243Sobrien#CFLAGS= $(INCLUDES) -O			# production
3359243Sobrien#CFLAGS= $(INCLUDES) 			# Broken optimizers....
3459243Sobrien
3559243Sobrien#CFLAGS= -g -pg $(INCLUDES) -DPROF
3659243Sobrien#CFLAGS= -O -pg $(INCLUDES) -DPROF
3759243Sobrien
3859243Sobrien# gcc 1.00-1.37
3959243Sobrien#CFLAGS=-O $(INCLUDES) -finline-functions -fstrength-reduce 
4059243Sobrien
4159243Sobrien# gcc 1.37-1.40
4259243Sobrien#CFLAGS=-O $(INCLUDES) -fcombine-regs -finline-functions -fstrength-reduce 
4359243Sobrien# add -msoft-float for 68881 machines.
4459243Sobrien
4559243Sobrien# gcc 2.0
4659243Sobrien# On the sparc, don't use -O2; it breaks setjmp() and vfork()
4759243Sobrien#CFLAGS=-O $(INCLUDES)
4859243Sobrien
4959243Sobrien# gcc-2.1+
5059243SobrienCFLAGS=-O2 $(INCLUDES)
5159243Sobrien
5259243Sobrien# lucid c on suns
5359243Sobrien#CFLAGS=-O5 $(INCLUDES)
5459243Sobrien
5559243Sobrien# gcc 2.1 on linux
5659243Sobrien#CFLAGS=-O6 -fomit-frame-pointer $(INCLUDES)
5759243Sobrien
5859243Sobrien# HP/UX 8.0, 9.0
5959243Sobrien#CFLAGS= $(INCLUDES) +O3 -Aa
6059243Sobrien
6159243Sobrien# Ultrix 4.2a
6259243Sobrien#CFLAGS= $(INCLUDES) -O -Olimit 2000
6359243Sobrien
6459243Sobrien# Intel Paragon OSF/1 with PGI compilers
6559243Sobrien#CFLAGS=-O -Mnodebug -Mnoperfmon $(INCLUDES)
6659243Sobrien
6759243Sobrien# DEC Alpha OSF/1
6859243Sobrien#CFLAGS= -O2 $(INCLUDES) -Olimit 2000	## Normal Optimization
6959243Sobrien#CFLAGS= -O3 $(INCLUDES) -Olimit 2000	## Full Optimization - may not work
7059243Sobrien#CF=-j
7159243Sobrien#SUF=u
7259243Sobrien#.SUFFIXES: .u
7359243Sobrien
7459243Sobrien# for silicon graphics (and other mips compilers) -- use the
7559243Sobrien# global optimizer! (-O3).
7659243Sobrien# On SGI 4.0+ you need to add -D__STDC__ too.
7759243Sobrien#CFLAGS= -O3 $(INCLUDES) 
7859243Sobrien#CFLAGS= -O3 $(INCLUDES) -Olimit 2000	## Ultrix 4.2a
7959243Sobrien#CF=-j
8059243Sobrien#SUF=u
8159243Sobrien#.SUFFIXES: .u 				## Ultrix and gnu-make need that
8259243Sobrien
8359243Sobrien# mips systems
8459243Sobrien# CFLAGS= $(INCLUDES) -O -systype bsd43 -Wf,-XNd5000 -Wf,-XNp6000 -Olimit 2000
8559243Sobrien
8659243Sobrien# for at&t machines
8759243Sobrien#CFLAGS= -O -Ksd $(INCLUDES)
8859243Sobrien
8959243Sobrien# Stardent Titan
9059243Sobrien#CFLAGS = $(INCLUDES) -O -43
9159243Sobrien
9259243Sobrien# Stardent Stellar or sunos4 /bin/cc or Solaris2.1 /opt/SUNWspro/bin/cc
9359243Sobrien#CFLAGS = $(INCLUDES) -O4
9459243Sobrien
9559243Sobrien# Intergraph clipper CLIX 3.1
9659243Sobrien#CFLAGS= -w -O2 $(INCLUDES)
9759243Sobrien
9859243Sobrien# Dnix 5.3
9959243Sobrien#CFLAGS = -O -X7
10059243Sobrien
10159243Sobrien# Pyramid OS/x
10259243Sobrien#CFLAGS = -OG
10359243Sobrien
10459243Sobrien# Multiflow (5M binary... if you choose -O5!)
10559243Sobrien#CFLAGS = -O5 -sb_trace 0
10659243Sobrien
10759243Sobrien# DDE Supermax Unix SYSV Rel III.
10859243Sobrien# CFLAGS= -O3
10959243Sobrien
11059243Sobrien# SINIX RMx00
11159243Sobrien#CFLAGS= -O # -D_POSIX_SOURCE # -kansi
11259243Sobrien
11359243Sobrien# Apollo's with cc [apollo builtins don't work with gcc]
11459243Sobrien# and apollo should not define __STDC__ if it does not have
11559243Sobrien# the standard header files. RT's (aos4.3) need that too;
11659243Sobrien# you might want to skip the -O on the rt's... Not very wise.
11759243Sobrien# AIX/ESA needs -D_IBMESA on command line (this may disappear by GA)
11859243Sobrien#DFLAGS=-U__STDC__ 
11959243Sobrien#DFLAGS=-D_IBMESA
12059243Sobrien# On aix2.2.1 we need more compiler space.
12159243Sobrien#DFLAGS=-Nd4000 -Nn3000
12259243Sobrien# AU/X 2.0 needs a flag for POSIX (read the config file)
12359243Sobrien#DFLAGS=-Zp
12459243Sobrien# Tektronix 4300 running UTek 4.0 (BSD 4.2) needs:
12559243Sobrien#DFLAGS = -DUTek -DBSD
12659243Sobrien# VMS_POSIX needs:
12759243Sobrien#DFLAGS=-D_VMS_POSIX
12859243Sobrien# Multiflow and PCC compilers don't like void typedefs.
12959243Sobrien# You may also need -U__STDC__ if you use pcc (i.e. ibmrt aos4.3).
13059243Sobrien#DFLAGS=-DMULTIFLOW
13159243Sobrien#DFLAGS=-DPCC
13259243Sobrien# DELL SVR4
13359243Sobrien#DFLAGS=-DDELL
13459243Sobrien# SCO_SV
13559243Sobrien#DFLAGS=-D_SPEED_T -DSCO
13659243SobrienDFLAGS=
13759243Sobrien#DFLAGS=-D_PATH_TCSHELL='"${DESTBIN}/tcsh"'
13859243Sobrien
13959243Sobrien
14059243Sobrien################################################################
14159243Sobrien## LDFLAGS.  Define something here if you need to
14259243Sobrien################################################################
14359243SobrienLDFLAGS= 			## The simplest, suitable for all.
14459243Sobrien#LDFLAGS= -s			## Stripped. Takes less space on disk.
14559243Sobrien#LDFLAGS= -s -n			## Pure executable. Spares paging over
14659243Sobrien# 				## the network for machines with local
14759243Sobrien#				## swap but external /usr/local/bin .
14859243Sobrien#LDFLAGS= -s -n -Bstatic	## Without dynamic linking. (SunOS/cc)
14959243Sobrien#LDFLAGS= -s -n -static		## Without dynamic linking. (SunOS/gcc)
15059243Sobrien#LDFLAGS= -Wl,-s,-n		## Stripped, shared text (Unicos)
15159243Sobrien#LDFLAGS= -s -static		## Link statically. (linux)
15259243Sobrien#LDFLAGS= -s -N			## Impure executable (linux)
15359243Sobrien#LDFLAGS= -Bdynamic -dy		## SCO_SV
15459243Sobrien
15559243Sobrien################################################################
15659243Sobrien## LIBES.  Pick one, or roll your own.
15759243Sobrien################################################################
15859243SobrienLIBES= -ltermcap 			 ## BSD style things
15959243Sobrien#LIBES= -ltermcap			 ## SunOS, HP-UX, pyramid
16059243Sobrien#LIBES= -ltermcap			 ## Linux
16159243Sobrien#LIBES= -ltermcap -lshadow		 ## Linux with PW_SHADOW
16259243Sobrien#LIBES= -ltermcap -lsec			 ## Tek XD88/10 (UTekV) with PW_SHADOW
16359243Sobrien#LIBES= -ltermcap -lsec			 ## Motorola MPC (sysV88) with PW_SHADOW
16459243Sobrien#LIBES= -ltermcap -lcs			 ## Mach
16559243Sobrien#LIBES= -ltermcap -lbsd			 ## DEC osf1 on the alpha
16659243Sobrien#LIBES= -ltermcap -lbsd			 ## Intel paragon
16759243Sobrien#LIBES= -ltermcap -lbsd			 ## Clipper intergraph
16859243Sobrien#LIBES= -ltermcap -lseq			 ## Sequent's Dynix
16959243Sobrien#LIBES= -ltermcap -lauth		 ## Ultrix with Enhanced Security
17059243Sobrien#LIBES= -ltermcap -ldir -lx		 ## Xenix 386 style things
17159243Sobrien#LIBES= -ltermcap -lndir -lsocket -ljobs ## masscomp RTU6.0
17259243Sobrien#LIBES= -lcurses			 ## AIX on the rt
17359243Sobrien#LIBES= -lcurses			 ## TitanOS on the stellar
17459243Sobrien#LIBES= -ltermlib -lsocket -lnsl	 ## SysV4 w/o BSDTIMES or Solaris 2
17559243Sobrien#LIBES= -lcurses			 ## SysV3 w/o networking
17659243Sobrien#LIBES= -lcurses -lnet			 ## SysV3 with networking
17759243Sobrien#LIBES= -lcurses -ldir			 ## SysV2 w/o networking & dirlib
17859243Sobrien#LIBES= -lcurses -ldir -lnet		 ## SysV2 with networking & dirlib
17959243Sobrien#LIBES= -lcurses -lbsd			 ## AIX on the IBM 370 or rs6000 or ps2
18059243Sobrien#LIBES= -lcurses -lbsd			 ## ETA10
18159243Sobrien#LIBES= -lcurses -lbsd			 ## Irix3.1 on the SGI-IRIS4D
18259243Sobrien#LIBES= -lcurses -lbsd -lc_s		 ## Irix3.3 on the SGI-IRIS4D w/o yp
18359243Sobrien#LIBES= -lcurses -lsun -lbsd -lc_s	 ## Irix3.3 on the SGI-IRIS4D with yp
18459243Sobrien#LIBES= -lcurses -lsocket -lbsd		 ## Amdahl UTS 2.1
18559243Sobrien#LIBES= -lcurses -lsocket		 ## Intel's hypercube.
18659243Sobrien#LIBES= -lcurses -lsocket		 ## ns32000 based Opus.
18759243Sobrien#LIBES= -lcurses -lcposix		 ## ISC 2.2 without networking
18859243Sobrien#LIBES= -lcposix -lc_s -lcurses -linet	 ## ISC 2.2 with networking
18959243Sobrien#LIBES= -lcurses -lsec -lc_s		 ## ISC 2.0.2 without networking
19059243Sobrien#LIBES= -lcurses -linet -lsec -lc_s	 ## ISC 2.0.2 with networking
19159243Sobrien#LIBES= -lcurses -lintl -lcrypt		 ## SCO SysVR3.2v2.0
19259243Sobrien#LIBES= -lcurses -lintl -lsocket -lcrypt ## SCO+ODT1.1
19359243Sobrien#LIBES= -lcurses -lsocket -lcrypt	 ## SCO_SV
19459243Sobrien#LIBES= -lposix -ltermcap		 ## A/UX 2.0
19559243Sobrien#LIBES= -lposix -ltermcap -lc_s		 ## A/UX 3.0
19659243Sobrien#LIBES= -ldirent -lcurses		 ## att3b1 cc w/o shared lib & dirlib
19759243Sobrien#LIBES= -shlib -ldirent -lcurses	 ## att3b1 gcc with shared lib & dirlib
19859243Sobrien#LIBES= -ltermlib -lsocket -lnsl -lc /usr/ucblib/libucb.a ## SysV4 with BSDTIMES
19959243Sobrien#LIBES= -lcurses -lnsl -lsocket -lc /usr/ucblib/libucb.a ## Stardent Vistra
20059243Sobrien#LIBES= -ltermc				 ## emx under OS/2
20159243Sobrien#LIBES=					 ## Minix, VMS_POSIX
20259243Sobrien#LIBES= -ltermcap -lcrypt		 ## Multiflow
20359243Sobrien#LIBES= -ltermcap -lcrypt		 ## NetBSD
20459243Sobrien#LIBES= -lcurses 			 ## DDE Supermax
20559243Sobrien
20659243Sobrien################################################################
20759243Sobrien## EXTRAFLAGS and EXTRALIBS
20859243Sobrien################################################################
20959243Sobrien# Compiling for HESIOD
21059243Sobrien#HESDEF = -DHESIOD -I/usr/athena/include
21159243Sobrien#HESLIB = -L/usr/athena/lib -lhesiod
21259243Sobrien#
21359243Sobrien# Compiling for AFS with kerberos authentication
21459243Sobrien#AFSLIBDIR = /usr/afsws/lib
21559243Sobrien#AFSDEF = -DAFS -I/usr/afsws/include
21659243Sobrien#AFS33LIB = -laudit
21759243Sobrien#
21859243Sobrien#Solaris and HPUX require the BSD libraries with AFS.
21959243Sobrien#We use -lc to use only what we require.
22059243Sobrien#AFSAUXLIB = -lsocket -lnsl -lc -lucb                    # Solaris
22159243Sobrien#AFSAUXLIB = -lc -lBSD                                   # HPUX   
22259243Sobrien#
22359243Sobrien#AFSLIB = -L$(AFSLIBDIR) -L$(AFSLIBDIR)/afs -lkauth -lprot -lubik\
22459243Sobrien#         -lauth -lrxkad -lsys -ldes -lrx -llwp -lcom_err\
22559243Sobrien#         $(AFSLIBDIR)/afs/util.a $(AFS33LIB) $(AFSAUXLIB)
22659243Sobrien#
22759243Sobrien
22859243SobrienEXTRAFLAGS = $(HESDEF) $(AFSDEF)
22959243SobrienEXTRALIBS = $(HESLIB) $(AFSLIB)
23059243Sobrien
23159243Sobrien
23259243Sobrien# The difficult choice of a c-compiler...
23359243Sobrien# First, you should try your own c-compiler. 
23459243Sobrien# Gcc -traditional is also a safe choice. 
23559243Sobrien# If you think that you have good include files try gcc -Wall...
23659243Sobrien# If you want to take out -traditional, make sure that your sys/ioctl.h
23759243Sobrien# is fixed correctly, otherwise you'll be stopped for tty input, or you
23859243Sobrien# will lose the editor and job control.
23959243Sobrien
24059243Sobrien# This is for setting your C preprocessor value.
24159243SobrienCPP = ${CC} -E
24259243Sobrien# The -B tells gcc to use /bin/ld. This is to avoid using the gnu ld, which
24359243Sobrien# on the suns does not know how to make dynamically linked binaries.
24459243SobrienCC=	gcc -Wall -pipe -B/bin/	# -ansi -pedantic
24559243Sobrien#CC=	gcc -m486 -pipe -Wall # Generate code for Intel 486 (linux)
24659243Sobrien#CC=	shlicc 	# BSDI2.1 w/ shared libraries
24759243Sobrien#CC=	cc
24859243Sobrien#CC=	occ
24959243Sobrien#CC=	acc
25059243Sobrien#CC=	pcc
25159243Sobrien#CC=	hc -w
25259243Sobrien#CC=	c89	# For VMS/POSIX
25359243Sobrien#CC=	/bin/cc	# For suns, w/o gcc and SVR4
25459243Sobrien#CC=	/usr/lib/sun.compile/cc  # FPS 500 (+FPX) with Sun C compiler
25559243Sobrien#CC=	/opt/SUNWspro/bin/cc	# Solaris 2.1
25659243Sobrien#CC=	scc 	# Alliant fx2800
25759243Sobrien#CC=	lcc	-wa 
25859243Sobrien#CC=	cc -b elf -Kpic # SCO_SV
25959243SobrienED=	ed
26059243SobrienAS=	as
26159243SobrienRM=	rm
26259243SobrienCXREF=	/usr/ucb/cxref
26359243Sobrien#CXREF=	/bin/cxref			# SCO_SV
26459243SobrienVGRIND=	csh /usr/ucb/vgrind
26559243SobrienCTAGS=	/usr/ucb/ctags
26659243Sobrien#CTAGS=	/usr/bin/ctags			# SCO_SV
26759243Sobrien#XSTR= /usr/ucb/xstr
26859243Sobrien#XSTR= /usr/bin/xstr			# SCO_SV
26959243SobrienSCCS=	/usr/local/sccs
27059243SobrienPARALLEL=12				# Make the multi-max run fast.
27159243Sobrien#P=&					# Use Sequent's parallel make
27259243SobrienP=
27359243SobrienDESTDIR=/usr/local
27459243Sobrien#DESTDIR=/usr/contrib
27559243SobrienMANSECT=1
27659243SobrienDESTBIN=${DESTDIR}/bin
27759243SobrienDESTMAN=${DESTDIR}/man/man${MANSECT}
27859243Sobrien# DESTMAN=${DESTDIR}/catman/man${MANSECT}	 # A/UX
27959243Sobrien# DESTMAN=${DESTDIR}/usr/share/man/man${MANSECT} # Stardent Vistra (SysVR4)
28059243Sobrien# DESTMAN=/usr/catman/1l			 # Amiga unix (SysVR4)
28159243SobrienFTPAREA=/usr/spool/ftp
28259243Sobrien
28359243SobrienASSRCS=	sh.c sh.dir.c sh.dol.c sh.err.c sh.exec.c sh.char.c \
28459243Sobrien	sh.exp.c sh.file.c sh.func.c sh.glob.c sh.hist.c sh.init.c \
28559243Sobrien	sh.lex.c sh.misc.c sh.parse.c sh.print.c sh.proc.c sh.sem.c \
28659243Sobrien	sh.set.c sh.time.c sh.char.h sh.dir.h sh.proc.h sh.h 
28759243SobrienPSSRCS= sh.decls.h glob.c glob.h mi.termios.c mi.wait.h mi.varargs.h ma.setp.c \
28859243Sobrien	vms.termcap.c
28959243SobrienSHSRCS= ${ASSRCS} ${PSSRCS}
29059243SobrienSHOBJS=	sh.${SUF} sh.dir.${SUF} sh.dol.${SUF} sh.err.${SUF} sh.exec.${SUF} \
29159243Sobrien	sh.char.${SUF} sh.exp.${SUF} sh.func.${SUF} sh.glob.${SUF} \
29259243Sobrien	sh.hist.${SUF} sh.init.${SUF} sh.lex.${SUF} sh.misc.${SUF} \
29359243Sobrien	sh.parse.${SUF} sh.print.${SUF} sh.proc.${SUF} sh.sem.${SUF} \
29459243Sobrien	sh.set.${SUF} sh.time.${SUF} glob.${SUF} mi.termios.${SUF} \
29559243Sobrien	ma.setp.${SUF} vms.termcap.${SUF}
29659243Sobrien
29759243SobrienTWSRCS= tw.decls.h tw.h tw.help.c tw.init.c tw.parse.c tw.spell.c \
29859243Sobrien	tw.comp.c tw.color.c
29959243SobrienTWOBJS=	tw.help.${SUF} tw.init.${SUF} tw.parse.${SUF} tw.spell.${SUF} \
30059243Sobrien	tw.comp.${SUF} tw.color.${SUF}
30159243Sobrien
30259243SobrienEDSRCS= ed.chared.c ed.decls.h ed.defns.c ed.h ed.init.c ed.inputl.c \
30359243Sobrien	ed.refresh.c ed.screen.c ed.xmap.c ed.term.c ed.term.h
30459243SobrienEDOBJS=	ed.chared.${SUF} ed.refresh.${SUF} ed.screen.${SUF} ed.init.${SUF} \
30559243Sobrien	ed.inputl.${SUF} ed.defns.${SUF} ed.xmap.${SUF} ed.term.${SUF}
30659243Sobrien
30759243SobrienTCSRCS= tc.alloc.c tc.bind.c tc.const.c tc.decls.h tc.disc.c \
30859243Sobrien	tc.func.c tc.os.c tc.os.h tc.printf.c tc.prompt.c \
30959243Sobrien	tc.sched.c tc.sig.c tc.sig.h tc.str.c sh.types.h tc.vers.c tc.wait.h \
31059243Sobrien	tc.who.c tc.h
31159243SobrienTCOBJS=	tc.alloc.${SUF} tc.bind.${SUF} tc.const.${SUF} tc.defs.${SUF} \
31259243Sobrien	tc.disc.${SUF} tc.func.${SUF} tc.os.${SUF} tc.printf.${SUF} \
31359243Sobrien	tc.prompt.${SUF} tc.sched.${SUF} tc.sig.${SUF} tc.str.${SUF} \
31459243Sobrien	tc.vers.${SUF} tc.who.${SUF} 
31559243Sobrien
31659243SobrienPVSRCS= Makefile.std Makefile.vms Makefile.in Makefile.win32
31759243SobrienAVSRCS= Fixes MAKEDIFFS MAKESHAR NewThings README FAQ \
31859243Sobrien	WishList config_f.h eight-bit.me glob.3 patchlevel.h \
31959243Sobrien	pathnames.h tcsh.man Ported src.desc Imakefile imake.config \
32059243Sobrien	README.imake complete.tcsh vmsreadme.txt termcap.vms snames.h \
32159243Sobrien	host.defs gethost.c tcsh.man2html configure.in configure config.h.in
32259243Sobrien
32359243SobrienVHSRCS=${PVSRCS} ${AVSRCS}
32459243Sobrien
32559243SobrienCONFSRCS=config/* 
32659243Sobrien
32759243SobrienALLSRCS=  ${SHSRCS} ${TWSRCS} ${EDSRCS} ${TCSRCS} ${VHSRCS}
32859243SobrienDISTSRCS= ${PSSRCS} ${TWSRCS} ${EDSRCS} ${TCSRCS} ${AVSRCS}
32959243Sobrien
33059243Sobrien
33159243SobrienOBJS= ${SHOBJS} ${TWOBJS} ${EDOBJS} ${TCOBJS}
33259243Sobrien
33359243Sobrien
33459243Sobrienall: ${BUILD}
33559243Sobrien
33659243Sobrientcsh:$(P) ${OBJS} 
33759243Sobrien	rm -f tcsh core
33859243Sobrien	${CC} -o tcsh ${LDFLAGS} ${CFLAGS} ${OBJS} ${LIBES} ${EXTRALIBS}
33959243Sobrien
34059243Sobrien# Purify
34159243Sobrienpure:$(P) ${OBJS} 
34259243Sobrien	rm -f tcsh core
34359243Sobrien	purify `echo ${CC} | sed -e s,-B/bin/,,` -o tcsh ${LDFLAGS} ${CFLAGS} ${OBJS} ${LIBES} ${EXTRALIBS}
34459243Sobrien# OS/2
34559243Sobrientcsh.exe: tcsh
34659243Sobrien	emxbind tcsh
34759243Sobrien
34859243Sobriengethost:  gethost.c sh.err.h tc.const.h sh.h
34959243Sobrien	rm -f gethost
35059243Sobrien	${CC} -o gethost ${LDFLAGS} ${CFLAGS} ${DFLAGS} $(srcdir)/gethost.c ${LIBES} ${EXTRALIBS}
35159243Sobrien
35259243Sobrientc.defs.c:	gethost host.defs
35359243Sobrien	@rm -f $@
35459243Sobrien	@echo "/* Do not edit this file, make creates it */" > $@
35559243Sobrien	./gethost $(srcdir)/host.defs >> $@
35659243Sobrien
35759243Sobrientcsh.ps: tcsh.man
35859243Sobrien	rm -f tcsh.ps
35959243Sobrien	-ptroff -t -man $(srcdir)/tcsh.man > tcsh.ps
36059243Sobrien
36159243Sobrien
36259243Sobrien.c.${SUF}:
36359243Sobrien	${CC} ${CF} ${CFLAGS} ${DFLAGS} ${EXTRAFLAGS} $<
36459243Sobrien
36559243Sobrien# _VMS_POSIX #module addition
36659243Sobrien#.c.${SUF}:
36759243Sobrien#	@(echo '#module '`echo $< | sed -e 's/\./_/g'`; cat $<) > $*..c
36859243Sobrien#	@echo ${CC} ${CF} ${CFLAGS} ${DFLAGS} ${EXTRAFLAGS} $*.c
36959243Sobrien#	@${CC} ${CF} ${CFLAGS} ${DFLAGS} ${EXTRAFLAGS} $*..c
37059243Sobrien#	@mv $*..o $*.o
37159243Sobrien#	@rm -f $*..c
37259243Sobrien
37359243Sobrien
37459243Sobrien# Don't do any special massaging of C files for sharing of strings!!
37559243Sobrien# it causes weird segmentation faults on some systems.
37659243Sobrien#.c.o:
37759243Sobrien#	${CPP} ${CFLAGS} $*.c | ${XSTR} -c -
37859243Sobrien#	${CC} ${CF} ${CFLAGS} x.c 
37959243Sobrien#	mv -f x.o $*.o
38059243Sobrien#	rm -f x.c
38159243Sobrien
38259243Sobrien#ed.init.o: ed.init.c
38359243Sobrien#	${CPP} ${CFLAGS} $*.c | ${XSTR} -c -
38459243Sobrien#	${CC} -R ${CF} ${CF} x.c 
38559243Sobrien#	mv -f x.o $*.o
38659243Sobrien#	rm -f x.c
38759243Sobrien
38859243Sobrien#strings.o: strings
38959243Sobrien#	${XSTR}
39059243Sobrien#	${CC} -c -R xs.c
39159243Sobrien#	mv -f xs.o strings.o
39259243Sobrien#	rm -f xs.c
39359243Sobrien
39459243Sobrien##.DEFAULT:
39559243Sobrien##	${SCCS} get $<
39659243Sobrien
39759243Sobrien##.DEFAULT:
39859243Sobrien##	co $<
39959243Sobrien
40059243Sobriened.defns.h: ed.defns.c
40159243Sobrien	@rm -f $@
40259243Sobrien	@echo '/* Do not edit this file, make creates it. */' > $@
40359243Sobrien	@echo '#ifndef _h_ed_defns' >> $@
40459243Sobrien	@echo '#define _h_ed_defns' >> $@
40559243Sobrien	grep '[FV]_' $(srcdir)/ed.defns.c | grep '^#define' >> $@
40659243Sobrien	@echo '#endif /* _h_ed_defns */' >> $@
40759243Sobrien
40859243Sobriensh.err.h: sh.err.c
40959243Sobrien	@rm -f $@
41059243Sobrien	@echo '/* Do not edit this file, make creates it. */' > $@
41159243Sobrien	@echo '#ifndef _h_sh_err' >> $@
41259243Sobrien	@echo '#define _h_sh_err' >> $@
41359243Sobrien	grep 'ERR_' $(srcdir)/sh.err.c | grep '^#define' >> $@
41459243Sobrien	@echo '#endif /* _h_sh_err */' >> $@
41559243Sobrien
41659243Sobrientc.const.h: tc.const.c sh.char.h config.h config_f.h sh.types.h sh.err.h
41759243Sobrien	@rm -f $@
41859243Sobrien	@echo '/* Do not edit this file, make creates it. */' > $@
41959243Sobrien	@echo '#ifndef _h_tc_const' >> $@
42059243Sobrien	@echo '#define _h_tc_const' >> $@
42159243Sobrien	${CPP} $(INCLUDES) ${DFLAGS} ${EXTRAFLAGS} -D_h_tc_const\
42259243Sobrien	    $(srcdir)/tc.const.c | grep 'Char STR' | \
42359243Sobrien	    sed -e 's/Char \([a-zA-Z0-9_]*\)\[\].*/extern Char \1[];/' | \
42459243Sobrien	    sort >> $@
42559243Sobrien	@echo '#endif /* _h_tc_const */' >> $@
42659243Sobrien
42759243Sobriencsh.prof: ${OBJS} sh.prof.${SUF} mcrt0.${SUF}
42859243Sobrien	rm -f csh.prof
42959243Sobrien	ld -X mcrt0.${SUF} ${OBJS} -o csh.prof ${LIBES} -lc
43059243Sobrien
43159243Sobriensh.prof.${SUF}:
43259243Sobrien	cp sh.c sh.prof.c
43359243Sobrien	${CC} ${CF} ${CFLAGS} -DPROF sh.prof.c
43459243Sobrien
43559243Sobrienlint: tc.const.h ed.defns.h
43659243Sobrien	lint ${DFLAGS} ${LFLAGS} sh*.c tw*.c ed*.c tc.*.c ${LIBES}
43759243Sobrien
43859243Sobrienalint: tc.const.h ed.defns.h
43959243Sobrien	alint ${DFLAGS} ${LFLAGS} sh*.c tw*.c ed*.c tc.*.c ${LIBES}
44059243Sobrien
44159243Sobrienprint:
44259243Sobrien	@pr READ_ME
44359243Sobrien	@pr makefile makefile.*
44459243Sobrien	@(size -l a.out; size *.${SUF}) | pr -h SIZES
44559243Sobrien	@${CXREF} sh*.c | pr -h XREF
44659243Sobrien	@ls -l | pr 
44759243Sobrien	@pr sh*.h [a-rt-z]*.h sh*.c alloc.c
44859243Sobrien
44959243Sobrienvprint:
45059243Sobrien	@pr -l84 READ_ME TODO
45159243Sobrien	@pr -l84 makefile makefile.*
45259243Sobrien	@(size -l a.out; size *.${SUF}) | pr -l84 -h SIZES
45359243Sobrien	@${CXREF} sh*.c | pr -l84 -h XREF
45459243Sobrien	@ls -l | pr -l84
45559243Sobrien	@${CXREF} sh*.c | pr -l84 -h XREF
45659243Sobrien	@pr -l84 sh*.h [a-rt-z]*.h sh*.c alloc.c
45759243Sobrien
45859243Sobrienvgrind:
45959243Sobrien	@cp /dev/null index
46059243Sobrien	@for i in *.h; do vgrind -t -h "C Shell" $$i >/crp/bill/csh/$$i.t; done
46159243Sobrien	@for i in *.c; do vgrind -t -h "C Shell" $$i >/crp/bill/csh/$$i.t; done
46259243Sobrien	@vgrind -t -x -h Index index >/crp/bill/csh/index.t
46359243Sobrien
46459243Sobrieninstall: tcsh 
46559243Sobrien	-mv -f ${DESTBIN}/tcsh  ${DESTBIN}/tcsh.old
46659243Sobrien	cp tcsh ${DESTBIN}/tcsh
46759243Sobrien	-strip ${DESTBIN}/tcsh
46859243Sobrien	chmod 555 ${DESTBIN}/tcsh
46959243Sobrien
47059243Sobrieninstall.man: tcsh.man
47159243Sobrien	-rm -f ${DESTMAN}/tcsh.${MANSECT}
47259243Sobrien	cp $(srcdir)/tcsh.man ${DESTMAN}/tcsh.${MANSECT}
47359243Sobrien	chmod 444 ${DESTMAN}/tcsh.${MANSECT}
47459243Sobrien
47559243Sobrien# Amiga Unix
47659243Sobrien#install.man: tcsh.man
47759243Sobrien#        compress tcsh.man
47859243Sobrien#	cp tcsh.man.Z ${DESTMAN}/tcsh.Z
47959243Sobrien#	chmod 444 ${DESTMAN}/tcsh.Z
48059243Sobrien
48159243Sobrien# Apple A/UX
48259243Sobrien#install.man: tcsh.man
48359243Sobrien#	-rm -f ${DESTMAN}/tcsh.${MANSECT}.Z
48459243Sobrien#	nroff -man tcsh.man | compress > ${DESTMAN}/tcsh.${MANSECT}.Z
48559243Sobrien#	chmod 444 ${DESTMAN}/tcsh.${MANSECT}.Z
48659243Sobrien
48759243Sobrienclean:
48859243Sobrien	${RM} -f a.out strings x.c xs.c tcsh tcsh.a _MAKE_LOG core gethost
48959243Sobrien	${RM} -f *.${SUF} sh.prof.c ed.defns.h tc.const.h sh.err.h tc.defs.c
49059243Sobrien	${RM} -f tcsh.*.m tcsh.*.cat
49159243Sobrien
49259243Sobrienveryclean: clean
49359243Sobrien	${RM} -f config.h config.status config.cache config.log Makefile tcsh.ps
49459243Sobrien	${RM} -f *~ #*
49559243Sobrien
49659243Sobriendistclean: veryclean
49759243Sobrien
49859243Sobrientags:	/tmp
49959243Sobrien	${CTAGS} sh*.c
50059243Sobrien
50159243Sobrientar.Z:
50259243Sobrien	rm -f tcsh-${VERSION}.tar.Z
50359243Sobrien	rm -rf tcsh-${VERSION} 
50459243Sobrien	mkdir tcsh-${VERSION} tcsh-${VERSION}/config
50559243Sobrien	cp ${ALLSRCS} tcsh-${VERSION}
50659243Sobrien	cp ${CONFSRCS} tcsh-${VERSION}/config
50759243Sobrien	tar cf - nls/Makefile nls/?*/set?* | (cd tcsh-${VERSION}; tar xpf -)
50859243Sobrien	tar cvf - tcsh-${VERSION} | compress > tcsh-${VERSION}.tar.Z
50959243Sobrien	rm -rf tcsh-${VERSION}
51059243Sobrien
51159243Sobrientar.gz:
51259243Sobrien	rm -f tcsh-${VERSION}.tar.gz
51359243Sobrien	rm -rf tcsh-${VERSION} 
51459243Sobrien	mkdir tcsh-${VERSION} tcsh-${VERSION}/config
51559243Sobrien	cp ${ALLSRCS} tcsh-${VERSION}
51659243Sobrien	cp ${CONFSRCS} tcsh-${VERSION}/config
51759243Sobrien	tar cf - nls/Makefile nls/?*/set?* | (cd tcsh-${VERSION}; tar xpf -)
51859243Sobrien	tar cvf - tcsh-${VERSION} | gzip > tcsh-${VERSION}.tar.gz
51959243Sobrien	rm -rf tcsh-${VERSION}
52059243Sobrien
52159243Sobrienshar:
52259243Sobrien	rm -f tcsh-*.shar
52359243Sobrien	rm -rf tcsh-${VERSION} 
52459243Sobrien	mkdir tcsh-${VERSION} tcsh-${VERSION}/config
52559243Sobrien	cp ${ALLSRCS} tcsh-${VERSION}
52659243Sobrien	cp ${CONFSRCS} tcsh-${VERSION}/config
52759243Sobrien	tar cf - nls/Makefile nls/?*/set?* | (cd tcsh-${VERSION}; tar xpf -)
52859243Sobrien	MAKESHAR -v -n tcsh-${VERSION} tcsh-${VERSION} \
52959243Sobrien		 tcsh-${VERSION}/?* tcsh-${VERSION}/config/?* \
53059243Sobrien		 tcsh-${VERSION}/?*/set?*
53159243Sobrien	rm -rf tcsh-${VERSION}
53259243Sobrien
53359243Sobriencatalogs:
53459243Sobrien	@(cd nls; make catalogs)
53559243Sobrien
53659243Sobrientcsh-${VERSION}.tar.Z:
53759243Sobrien	rm -rf tcsh-${VERSION} 
53859243Sobrien	rm -f tcsh-${VERSION}.tar tcsh-${VERSION}.tar.Z DIFFS.[123]
53959243Sobrien	mkdir tcsh-${VERSION}
54059243Sobrien	./MAKEDIFFS bsd
54159243Sobrien	mv DIFFS.1 DIFFS.2 DIFFS.3 tcsh-${VERSION}
54259243Sobrien	cp ${DISTSRCS} tcsh-${VERSION}
54359243Sobrien	mkdir tcsh-${VERSION}/config
54459243Sobrien	cp ${CONFSRCS} tcsh-${VERSION}/config
54559243Sobrien	cp Makefile tcsh-${VERSION}/Makefile.new
54659243Sobrien	tar cf - nls/Makefile nls/?*/set?* | (cd tcsh-${VERSION}; tar xpf -)
54759243Sobrien	tar cvf - tcsh-${VERSION} | compress > tcsh-${VERSION}.tar.Z
54859243Sobrien	rm -rf tcsh-${VERSION}
54959243Sobrien
55059243Sobrientcsh.tahoe-${VERSION}.tar.Z:
55159243Sobrien	rm -rf tcsh.tahoe-${VERSION} 
55259243Sobrien	rm -f tcsh.tahoe-${VERSION}.tar tcsh.tahoe-${VERSION}.tar.Z DIFFS.[123]
55359243Sobrien	mkdir tcsh.tahoe-${VERSION}
55459243Sobrien	./MAKEDIFFS tahoe
55559243Sobrien	mv DIFFS.1 DIFFS.2 DIFFS.3 tcsh.tahoe-${VERSION}
55659243Sobrien	cp ${DISTSRCS} tcsh.tahoe-${VERSION}
55759243Sobrien	mkdir tcsh.tahoe-${VERSION}/config
55859243Sobrien	cp ${CONFSRCS} tcsh.tahoe-${VERSION}/config
55959243Sobrien	cp Makefile tcsh.tahoe-${VERSION}/Makefile.new
56059243Sobrien	tar cf - nls/Makefile nls/?*/set?* | (cd tcsh-${VERSION}; tar xpf -)
56159243Sobrien	tar cvf - tcsh.tahoe-${VERSION} | compress > tcsh.tahoe-${VERSION}.tar.Z
56259243Sobrien	rm -rf tcsh.tahoe-${VERSION}
56359243Sobrien
56459243Sobrientcsh.reno-${VERSION}.tar.Z:
56559243Sobrien	rm -rf tcsh.reno-${VERSION} 
56659243Sobrien	rm -f tcsh.reno-${VERSION}.tar tcsh.reno-${VERSION}.tar.Z DIFFS.[123]
56759243Sobrien	mkdir tcsh.reno-${VERSION}
56859243Sobrien	./MAKEDIFFS reno
56959243Sobrien	mv DIFFS.1 DIFFS.2 DIFFS.3 tcsh.reno-${VERSION}
57059243Sobrien	cp ${DISTSRCS} tcsh.reno-${VERSION}
57159243Sobrien	mkdir tcsh.reno-${VERSION}/config
57259243Sobrien	cp ${CONFSRCS} tcsh.reno-${VERSION}/config
57359243Sobrien	cp Makefile tcsh.reno-${VERSION}/Makefile.new
57459243Sobrien	tar cf - nls/Makefile nls/?*/set?* | (cd tcsh-${VERSION}; tar xpf -)
57559243Sobrien	tar cvf - tcsh.reno-${VERSION} | compress > tcsh.reno-${VERSION}.tar.Z
57659243Sobrien	rm -rf tcsh.reno-${VERSION}
57759243Sobrien
57859243Sobrienftp: tcsh-${VERSION}.tar.Z tcsh.tahoe-${VERSION}.tar.Z
57959243Sobrien	cp tcsh-${VERSION}.tar.Z tcsh.tahoe-${VERSION}.tar.Z ${FTPAREA}
58059243Sobrien	cp tcsh.man ${FTPAREA}
58159243Sobrien
58259243Sobrienautoconfigure: $(srcdir)/configure $(srcdir)/config.h.in
58359243Sobrien
58459243Sobrien$(srcdir)/configure: $(srcdir)/configure.in
58559243Sobrien	cd $(srcdir) && autoconf
58659243Sobrien
58759243Sobrien$(srcdir)/config.h.in: $(srcdir)/stamp-h.in
58859243Sobrien$(srcdir)/stamp-h.in: $(srcdir)/configure.in
58959243Sobrien	cd $(srcdir) && autoheader
59059243Sobrien	@echo timestamp > $(srcdir)/stamp-h.in
59159243Sobrien
59259243Sobrien#
59359243Sobrien# Dependencies
59459243Sobrien#
59559243Sobrienconfig.h: config_f.h
59659243Sobrien
59759243SobrienTCH=tc.h tc.const.h tc.decls.h tc.os.h tc.sig.h
59859243SobrienSHH=sh.h sh.types.h sh.char.h sh.err.h sh.dir.h sh.proc.h pathnames.h \
59959243Sobrien    sh.decls.h ${TCH}
60059243SobrienTWH=tw.h tw.decls.h
60159243SobrienEDH=ed.h ed.decls.h
60259243Sobrien
60359243Sobrien# EDH
60459243SobrienEDINC=sh.${SUF} sh.func.${SUF} sh.lex.${SUF} sh.print.${SUF} sh.proc.${SUF} \
60559243Sobrien      sh.set.${SUF} tc.bind.${SUF} tc.os.${SUF} tc.prompt.${SUF} \
60659243Sobrien      tc.sched.${SUF} tw.parse.${SUF} tw.color.${SUF}
60759243Sobrien${EDOBJS} ${EDINC} : ${EDH}
60859243Sobrien
60959243Sobrien# SHH
61059243Sobrien${OBJS}: config.h ${SHH}
61159243Sobrien
61259243Sobrien# TWH
61359243SobrienTWINC=ed.chared.${SUF} ed.inputl.${SUF} sh.exec.${SUF} sh.func.${SUF} \
61459243Sobrien      sh.set.${SUF} tc.func.${SUF} tw.color.${SUF}
61559243Sobrien${TWOBJS} ${TWINC}: ${TWH}
61659243Sobrien
61759243Sobrien# glob.h
61859243Sobrienglob.${SUF} sh.glob.${SUF}: glob.h
61959243Sobrien
62059243Sobrien# ed.defns.h
62159243SobrienEDDINC=tc.bind.${SUF} tc.func.${SUF} tc.os.${SUF}
62259243Sobrien${EDOBJS} ${EDDINC}: ed.defns.h
62359243Sobrien
62459243Sobrien# tc.defs.o
62559243Sobrientc.defs.${SUF}:	tc.defs.c sh.h
626