Files
pvxs/Makefile
T
Michael Davidsaver b0b8d60656 rename generated CONFIG_SITE to TOOLCHAIN
No longer generate CONFIG_SITE.Common.$(T_A),
which should never be generated...
2025-06-11 15:32:47 -07:00

32 lines
470 B
Makefile

# Makefile at top of application tree
TOP = .
include $(TOP)/configure/CONFIG
# Directories to build, any order
DIRS += configure
DIRS += setup
setup_DEPEND_DIRS = configure
DIRS += src
src_DEPEND_DIRS = setup
DIRS += tools
tools_DEPEND_DIRS = src
DIRS += ioc
ioc_DEPEND_DIRS = src
ifdef BASE_3_15
DIRS += qsrv
qsrv_DEPEND_DIRS = src ioc
endif
DIRS += test
test_DEPEND_DIRS = src ioc
DIRS += example
example_DEPEND_DIRS = src
include $(TOP)/configure/RULES_TOP