-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (26 loc) · 791 Bytes
/
Makefile
File metadata and controls
33 lines (26 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#Makefile at top of application tree
TOP = .
include $(TOP)/configure/CONFIG
DIRS := $(DIRS) configure
DIRS := $(DIRS) rixscamApp
DIRS := $(DIRS) rixscamSupport
rixscamApp_DEPEND_DIRS += rixscamSupport
ifeq ($(ADRIXSCAM_PLUGIN), YES)
DIRS := $(DIRS) NDPluginXIPApp
DIRS := $(DIRS) NDPluginXIPSupport
NDPluginXIPApp_DEPEND_DIRS += NDPluginXIPSupport
rixscamApp_DEPEND_DIRS += NDPluginXIPApp
endif
ifeq ($(BUILD_IOCS), YES)
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard iocs))
iocs_DEPEND_DIRS += rixscamApp
endif
include $(TOP)/configure/RULES_TOP
uninstall: uninstall_iocs
uninstall_iocs:
$(MAKE) -C iocs uninstall
.PHONY: uninstall uninstall_iocs
realuninstall: realuninstall_iocs
realuninstall_iocs:
$(MAKE) -C iocs realuninstall
.PHONY: realuninstall realuninstall_iocs