Makefile revision 67e3a03ed4a2813074d36330f062ed6e593a4937
45e9809aff7304721fddb95654901b32195c9c7avboxsync# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
45e9809aff7304721fddb95654901b32195c9c7avboxsync# Use is subject to license terms.
45e9809aff7304721fddb95654901b32195c9c7avboxsync# Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T
45e9809aff7304721fddb95654901b32195c9c7avboxsync# All Rights Reserved
45e9809aff7304721fddb95654901b32195c9c7avboxsync# Copyright (c) 1980 Regents of the University of California.
45e9809aff7304721fddb95654901b32195c9c7avboxsync# All rights reserved. The Berkeley Software License Agreement
45e9809aff7304721fddb95654901b32195c9c7avboxsync# specifies the terms and conditions for redistribution.
45e9809aff7304721fddb95654901b32195c9c7avboxsync# ident "%Z%%M% %I% %E% SMI"
45e9809aff7304721fddb95654901b32195c9c7avboxsync# C Shell with process control; VM/UNIX VAX Makefile
45e9809aff7304721fddb95654901b32195c9c7avboxsync# Bill Joy UC Berkeley; Jim Kulp IIASA, Austria
45e9809aff7304721fddb95654901b32195c9c7avboxsyncMBCHAR = -DMBCHAR # Define this line to include multibyte input support
45e9809aff7304721fddb95654901b32195c9c7avboxsyncDEFS = -DVFORK -DFILEC -DBSD_COMP -DFIVE # No TELL when MBCHAR
45e9809aff7304721fddb95654901b32195c9c7avboxsyncHDDEP = sh.o sh.dir.o sh.dol.o sh.err.o sh.exec.o sh.exp.o sh.file.o \
45e9809aff7304721fddb95654901b32195c9c7avboxsync sh.func.o sh.glob.o sh.hist.o sh.init.o sh.lex.o sh.misc.o \
45e9809aff7304721fddb95654901b32195c9c7avboxsyncCOMMONOBJS= printf.o sh.char.o sh.dir.o sh.dol.o sh.err.o \
45e9809aff7304721fddb95654901b32195c9c7avboxsync sh.exec.o sh.exp.o sh.file.o sh.func.o sh.glob.o sh.hist.o sh.init.o \
45e9809aff7304721fddb95654901b32195c9c7avboxsync sh.lex.o sh.misc.o sh.parse.o sh.print.o sh.proc.o sh.sem.o sh.set.o \
45e9809aff7304721fddb95654901b32195c9c7avboxsync# build rule for common source above
45e9809aff7304721fddb95654901b32195c9c7avboxsync%.o: ../../sh/%.c
45e9809aff7304721fddb95654901b32195c9c7avboxsync$(CSH_PROG): $(COMMONOBJS) $(PFOBJS) $(LOCALOBJS) $(MAPFILES)
45e9809aff7304721fddb95654901b32195c9c7avboxsync $(LINK.c) $(COMMONOBJS) $(PFOBJS) $(LOCALOBJS) -o $@ $(LDLIBS)