clean up directory creation
[unix-history] / usr / src / share / me / Makefile
#
# Copyright (c) 1987 Regents of the University of California.
# All rights reserved. The Berkeley software License Agreement
# specifies the terms and conditions for redistribution.
#
# @(#)Makefile 6.3 (Berkeley) %G%
#
CFLAGS= -O
LIBC= /lib/libc.a
LIB= /usr/lib/me
SRCS= tmac.e acm.me chars.me deltext.me eqn.me float.me footnote.me \
index.me local.me null.me refer.me sh.me tbl.me thesis.me
all:
install: FRC
-[ -d ${DESTDIR}${LIB} ] || mkdir ${DESTDIR}${LIB}
chown bin.bin ${DESTDIR}${LIB}
chmod 755 ${DESTDIR}${LIB}
-for i in ${SRCS}; do \
sed -e '/%beginstrip%/{' \
-e 'h' \
-e 's/.*/.\\" This version has had comments stripped; an unstripped version is available./p' \
-e 'g' \
-e '}' \
-e '/%beginstrip%/,$$s/[. ][ ]*\\".*//' \
-e '/^$$/d' \
-e '/\\n@/d' $$i > _mac_tmp_; \
install -o bin -g bin -m 444 _mac_tmp_ ${DESTDIR}${LIB}/$$i; \
done
mv ${DESTDIR}${LIB}/tmac.e ${DESTDIR}/usr/lib/tmac/tmac.e
install -c -o bin -g bin -m 444 revisions ${DESTDIR}${LIB}/revisions
clean:
depend:
FRC: