Files
pva2pva/Makefile
Michael Davidsaver b30948249a Revert "Don't build P2P by default"
This reverts commit 818cf1a846.
2017-11-01 09:35:53 -05:00

17 lines
384 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 pdbApp
# Add any additional dependency rules here:
include $(TOP)/configure/RULES_TOP