From 45d08d2d8d7a3a7533dfd26e720217f31bacdadb Mon Sep 17 00:00:00 2001 From: Andrew Johnson <anj@aps.anl.gov> Date: Sat, 30 Aug 2008 04:55:51 +0000 Subject: [PATCH] List dependencies local to each dir. --- Makefile | 7 +++++-- src/Makefile | 10 +++++++--- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index f04aaf3c..23dd51c7 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,13 @@ # Makefile at top of application tree TOP = . include $(TOP)/configure/CONFIG + DIRS += configure -DIRS += src -DIRS += test +DIRS += src src_DEPEND_DIRS = configure + +DIRS += test test_DEPEND_DIRS = src + include $(TOP)/configure/RULES_TOP diff --git a/src/Makefile b/src/Makefile index 9cefa94c..23fb2628 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,11 +1,15 @@ TOP = .. include $(TOP)/configure/CONFIG + DIRS += pv -DIRS += seq -DIRS += dev -DIRS += snc +DIRS += seq seq_DEPEND_DIRS = pv + +DIRS += dev dev_DEPEND_DIRS = seq + +DIRS += snc snc_DEPEND_DIRS = seq + include $(TOP)/configure/RULES_DIRS -- GitLab