diff --git a/Makefile b/Makefile index f04aaf3c449dd69b8d3fc0271790d1f5a437e2ac..23dd51c767b0f71bf613ecccd60cda99cc5d3e25 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 9cefa94ca794162348b184045cf7d3a46b9c62be..23fb2628afdab875e61a43c04052d684f8c287bf 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