forked from epics-base/p4p
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
34 lines (24 loc) · 836 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
24
25
26
27
28
29
30
31
32
33
34
#Makefile at top of application tree
TOP = .
include $(TOP)/configure/CONFIG
DIRS += configure
DIRS += src
src_DEPEND_DIRS = configure
include $(TOP)/configure/RULES_TOP
UNINSTALL_DIRS += $(wildcard $(INSTALL_LOCATION)/python*)
# jump to a sub-directory where CONFIG_PY has been included
# can't include CONFIG_PY here as it may not exist yet
sphinx sh ipython: all
$(MAKE) -C src/O.$(EPICS_HOST_ARCH) $@ PYTHON=$(PYTHON)
nose.%: all
$(MAKE) -C src/O.$(EPICS_HOST_ARCH) $@ PYTHON=$(PYTHON)
nose.%: all
$(MAKE) -C src/O.$(EPICS_HOST_ARCH) $@ PYTHON=$(PYTHON)
nose: nose.p4p
nose: nose.p4p
sphinx-clean:
$(MAKE) -C documentation clean PYTHON=$(PYTHON)
sphinx-commit: sphinx
touch documentation/_build/html/.nojekyll
./commit-gh.sh documentation/_build/html
.PHONY: nose nose.% sphinx sh ipython sphinx-commit sphinx-clean