Files
pva2pva/Makefile
Michael Davidsaver 8aa99160e2 missing dep
2016-02-10 07:53:00 -05:00

17 lines
377 B
Makefile

# 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))
testApp_DEPEND_DIRS += p2pApp
# Add any additional dependency rules here:
include $(TOP)/configure/RULES_TOP