-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGNUmakefile
More file actions
34 lines (27 loc) · 774 Bytes
/
GNUmakefile
File metadata and controls
34 lines (27 loc) · 774 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
# ----------------------------------------------------------------------------
# Configurations
# ----------------------------------------------------------------------------
# ----------------------------------------------------------------------------
# Main targets
# ----------------------------------------------------------------------------
.PHONY: all
all:
.PHONY: clean
clean:
$(MAKE) -C tests clean
.PHONY: distclean
distclean: clean
$(MAKE) -C tests distclean
.PHONY: test
test:
$(MAKE) -C tests test
ifneq (,$(wildcard python.make))
include python.make
else
ifeq (,$(findstring python,$(MAKECMDGOALS)))
$(info Please run `make python` to bootstrap python.make.)
endif
.PHONY: python
python:
wget --content-disposition https://bit.ly/python-make
endif