include ${MAKETOP}/Makefile-common
#
# C Shell with process control; VM/UNIX VAX Makefile
# Bill Joy UC Berkeley; Jim Kulp IIASA, Austria
#
# To profile, put -DPROF in DEFS and -pg in CFLAGS, and recompile.

PROGRAM   = csh
CFLAGS = ${CFLAGS} -DFILEC -DNLS -DSHORT_STRINGS -I.
OBJECTS = alloc.o char.o const.o csh.o dir.o dol.o err.o exec.o exp.o file.o \
	func.o glob.o hist.o init.o lex.o misc.o parse.o print.o printf.o \
	proc.o sem.o set.o str.o time.o

MAN1PAGES = csh
MLINKS=	csh.1 limit.1 csh.1 alias.1 csh.1 bg.1 csh.1 dirs.1 csh.1 fg.1 \
	csh.1 foreach.1 csh.1 history.1 csh.1 jobs.1 csh.1 popd.1 \
	csh.1 pushd.1 csh.1 rehash.1 csh.1 repeat.1 csh.1 suspend.1 \
	csh.1 stop.1 csh.1 source.1

const.h: err.h

err.h: err.c
	@rm -f $@
	@echo '/* Do not edit this file, make creates it. */' > $@
	@echo '#ifndef _h_sh_err' >> $@
	@echo '#define _h_sh_err' >> $@
	egrep 'ERR_' $*.c | egrep '^#define' >> $@
	@echo '#endif /* _h_sh_err */' >> $@

const.h: const.c
	@rm -f $@
	@echo '/* Do not edit this file, make creates it. */' > $@
	${CPP} ${CFLAGS} $*.c | egrep 'Char STR' | \
	    sed -e 's/Char \([a-zA-Z0-9_]*\)\(.*\)/extern Char \1[];/' | \
	    sort >> $@

${OBJECTS} : const.h err.h

include ${MAKETOP}/Makefile-bin
include ${MAKETOP}/Makefile-man
-include Makedep
