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