This commit is contained in:
Michael Davidsaver
2015-09-04 17:22:36 -04:00
parent 2f27b07120
commit 56d3b9b4e0
13 changed files with 1012 additions and 3 deletions

15
Makefile Normal file
View File

@ -0,0 +1,15 @@
# Makefile at top of application tree
TOP = .
include $(TOP)/configure/CONFIG
# Directories to build, any order
DIRS += configure
DIRS += $(wildcard *App)
DIRS += $(wildcard iocBoot)
# iocBoot depends on all *App dirs
iocBoot_DEPEND_DIRS += $(filter %App,$(DIRS))
# Add any additional dependency rules here:
include $(TOP)/configure/RULES_TOP