2.9BSD/usr/src/ucb/oldcsh/makefile.v6

Compare this file to the similar file:
Show the results in this format:

#
# Skeleton for version 6
#
# The -t1 version of the C compiler puts switch code in I space
# Give -DTELL in CFLAGS if your system has a tell() system call
#
BINDIR=	/bin
CFLAGS=	-O -I/usr/include/retrofit -t1 -Dpdp11 -DNORMAL6
XSTR=	/usr/ucb/xstr
ED=	-ed
CC=	ncc
AS=	-nas
RM=	-rm
CXREF=	cxref

#
# strings.o must be last in OBJS since it can change when previous files compile
#
OBJS=sh.o sh.dol.o sh.err.o sh.exec.o sh.exp.o sh.func.o sh.glob.o sh.hist.o \
	sh.lex.o sh.misc.o sh.parse.o sh.print.o sh.sem.o sh.set.o \
	sh.wait.o alloc.o sh.init.o printf.o doprnt.o getpwent.o getpwnam.o  \
	getpwuid.o strings.o

#
# Special massaging of C files for sharing of strings
#
.c.o:
	${CC} -E ${CFLAGS} $*.c | ${XSTR} -c -
	${CC} -c ${CFLAGS} x.c 
	mv x.o $*.o

a.out: ${OBJS} sh.local.h
	${CC} -n ${OBJS} -lretro -lS

#
# strings.o and sh.init.o are specially processed to be shared
#
strings.o: strings
	${XSTR}
	${CC} -S xs.c
	echo ${ED} - <:rofix xs.s
	${AS} -o strings.o xs.s
	${RM} xs.s

sh.init.o:
	${CC} -E ${CFLAGS} sh.init.c | ${XSTR} -c -
	${CC} ${CFLAGS} -S x.c
	echo ${ED} - <:rofix x.s
	${AS} - -o sh.init.o x.s
	${RM} x.s
	
errlst.o:
	${CC} -E ${CFLAGS} errlst.c | ${XSTR} -c -
	${CC} ${CFLAGS} -S x.c
	echo ${ED} - <:rofix x.s
	${AS} -o errlst.o x.s
	${RM} x.s

lint:
	lint sh*.h sh*.c

print:
	@pr READ_ME
	@pr makefile makefile.*
	@(size -l a.out; size *.o) | pr -h SIZES
	@${CXREF} sh*.c | pr -h XREF
	@ls -l | pr 
	@pr sh*.h [a-rt-z]*.h sh*.c alloc.c

install: a.out sh.local.h
	cp a.out x
	strip x
	${RM} -f ${DESTDIR}${BINDIR}/csh
	mv x ${DESTDIR}${BINDIR}/csh
	-chown bin ${DESTDIR}${BINDIR}/csh
	chmod 711 ${DESTDIR}${BINDIR}/csh

clean:
	${RM} -f a.out strings x.c xs.c
	${RM} -f *.o