b0b8d60656
No longer generate CONFIG_SITE.Common.$(T_A), which should never be generated...
32 lines
470 B
Makefile
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
|