From fe4cfd8091d46eb150813104c1c84e35032ea969 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 25 Jul 1996 21:37:54 +0000 Subject: [PATCH] no longer in use --- Makefile.subdirs | 55 ------------------------------------------------ 1 file changed, 55 deletions(-) delete mode 100644 Makefile.subdirs diff --git a/Makefile.subdirs b/Makefile.subdirs deleted file mode 100644 index 6792b39ed..000000000 --- a/Makefile.subdirs +++ /dev/null @@ -1,55 +0,0 @@ -# -# base $Id$ -# -# EPICS Makefile For Subdirectory Recursions -# by Matthew Needes and Mike Bordua -# - -TOP=. -include $(TOP)/config/CONFIG_BASE - -all: build - -build: dirs - @(for DIR in ${DIRS}; \ - do \ - TMP=`pwd`; echo "${T_A}: $@: $$DIR"; \ - cd $$DIR/O.${T_A}; ${MAKE} $@ ; \ - cd $$TMP; \ - done) - -install: dirs - @(for DIR in ${DIRS}; \ - do \ - TMP=`pwd`; echo "${T_A}: $@: $$DIR"; \ - cd $$DIR/O.${T_A}; ${MAKE} $@ ; \ - cd $$TMP; \ - done) - -depends: dirs - @(for DIR in ${DIRS}; \ - do \ - TMP=`pwd`; echo "${T_A}: $@: $$DIR"; \ - cd $$DIR/O.${T_A}; ${MAKE} $@ ; \ - cd $$TMP; \ - done) - -dirs: - @echo ${T_A}: Creating Directories - @for DIR in ${DIRS}; \ - do \ - TMP=`pwd`; \ - cd $$DIR ; \ - if [ -f Makefile.${BUILD_TYPE} ] ; then \ - test -d O.${T_A} || \ - mkdir O.${T_A}; \ - test -f O.${T_A}/Makefile || \ - ( echo "T_A=${T_A}" > O.${T_A}/Makefile; \ - echo "include ../Makefile.${BUILD_TYPE}" \ - >> O.${T_A}/Makefile;); \ - test -f O.${T_A}/.DEPENDS || \ - touch O.${T_A}/.DEPENDS; \ - fi ; \ - cd $$TMP; \ - done -