Files
pvDatabase/Makefile
2014-04-17 15:35:29 -05:00

27 lines
501 B
Makefile

# Makefile for the EPICS V4 pvDatabase module
TOP = .
include $(TOP)/configure/CONFIG
DIRS := configure
DIRS += src
src_DEPEND_DIRS = configure
EMBEDDED_TOPS := testTop
EMBEDDED_TOPS += arrayPerformance
EMBEDDED_TOPS += $(wildcard example*)
DIRS += $(EMBEDDED_TOPS)
define dir_DEP
$(1)_DEPEND_DIRS = src
endef
$(foreach dir, $(EMBEDDED_TOPS), $(eval $(call dir_DEP,$(dir))))
exampleDatabase_DEPEND_DIRS += testTop
examplePowerSupply_DEPEND_DIRS += testTop
include $(TOP)/configure/RULES_TOP