-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
41 lines (32 loc) · 929 Bytes
/
Makefile
File metadata and controls
41 lines (32 loc) · 929 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
33
34
35
36
37
38
39
40
41
#Makefile at top of application tree
TOP = .
include $(TOP)/configure/CONFIG
DIRS := $(DIRS) configure
DIRS := $(DIRS) xspdApp
DIRS := $(DIRS) xspdSupport
xspdApp_DEPEND_DIRS += xspdSupport
ifeq ($(BUILD_IOCS), YES)
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard iocs))
iocs_DEPEND_DIRS += xspdApp
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
bobfiles:
pixi run make-bobfiles
# Generate parameter definitions and then immediately format with clang-format
paramdefs:
pixi run make-paramdefs
pixi run clang-format -i -style=file $(shell find xspdApp -name '*.h' -o -name '*.cpp')
lint:
pixi run lint
coverage-report:
pixi run tests
pixi run get-coverage-info
pixi run make-coverage-report