From 4ea8a0b366f5fa5eb408bdd4a3693cd2d4bddcf0 Mon Sep 17 00:00:00 2001 From: CSRG Date: Wed, 28 Oct 1987 05:11:40 -0800 Subject: [PATCH] BSD 4_3_Tahoe development Work on file usr/src/new/news/Makefile Synthesized-from: CSRG/cd2/4.3tahoe --- usr/src/new/news/Makefile | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 usr/src/new/news/Makefile diff --git a/usr/src/new/news/Makefile b/usr/src/new/news/Makefile new file mode 100644 index 0000000000..51813a77ff --- /dev/null +++ b/usr/src/new/news/Makefile @@ -0,0 +1,26 @@ +# %W% (Berkeley) %G% +# +DESTDIR= +CFLAGS= -O + +# Programs that live in subdirectories, and have makefiles of their own. +# +SUBDIR= src man + +all: src/Makefile ${SUBDIR} + +${SUBDIR}: FRC + cd $@; make ${MFLAGS} + +src/Makefile: + @echo assuming src/localize.sh is correct... + cd src; make -f Makefile.dst Makefile + +install: + -for i in ${SUBDIR}; do \ + (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); done + +clean: + -for i in ${SUBDIR}; do (echo $$i; cd $$i; make ${MFLAGS} clean); done + +FRC: -- 2.20.1