forked from epics-modules/dxp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
23 lines (20 loc) · 856 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#Makefile at top of application tree
TOP = .
include $(TOP)/configure/CONFIG
DIRS := $(DIRS) $(filter-out $(DIRS), configure)
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *App))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *app))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard iocBoot))
dxpApp_DEPEND_DIRS = configure
iocBoot_DEPEND_DIRS = dxpApp
ifeq ($(EPICS_HOST_ARCH),linux-x86_64)
# Comment out the following lines to disable creation of example iocs and documentation
# DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard etc))
# ifeq ($(wildcard etc),etc)
# include $(TOP)/etc/makeIocs/Makefile.iocs
# UNINSTALL_DIRS += documentation/doxygen $(IOC_DIRS)
# endif
endif
# Comment out the following line to disable building of example iocs
#DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard iocs))
include $(TOP)/configure/RULES_TOP