35 lines
540 B
Makefile
35 lines
540 B
Makefile
#
|
|
# Copyright 1994 Silicon Graphics, Inc. All rights reserved.
|
|
#
|
|
# Makefile for REACT/pro Documents
|
|
#
|
|
#
|
|
DEPTH=..
|
|
include $(DEPTH)/Makedefs
|
|
|
|
#
|
|
#
|
|
SUBDIRS= frs_book gintr_book techrep_book
|
|
|
|
default: ${_FORCE}
|
|
@for d in ${SUBDIRS}; do \
|
|
${ECHO} "\tcd $$d; ${MAKE}"; \
|
|
cd $$d; ${MAKE}; cd ..; \
|
|
done
|
|
|
|
COMMONPREF=react
|
|
include ${COMMONRULES}
|
|
|
|
install ${COMMONTARGS}:
|
|
@for d in ${SUBDIRS}; do \
|
|
${ECHO} "\tcd $$d; ${MAKE} $@"; \
|
|
cd $$d; ${MAKE} $@; cd ..; \
|
|
done
|
|
|
|
${SUBDIRS}: ${_FORCE}
|
|
cd $@; ${MAKE}
|
|
|
|
.PRECIOUS: ${SUBDIRS}
|
|
|
|
_force:
|