-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.in
More file actions
28 lines (17 loc) · 872 Bytes
/
Makefile.in
File metadata and controls
28 lines (17 loc) · 872 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
# This is a small, minimalist wrapper for Make around Python's distutils.
PYTHON := @PYTHON@
.DEFAULT_GOAL := build
build:
$(PYTHON) setup.py build
clean:
find . -type f \( -name "*~" -o -name "*.pyc" \) -exec rm -vf {} \;
rm -rvf config.status config.log autom4te.cache/
install:
$(PYTHON) setup.py install --prefix=@prefix@
runtests:
$(PYTHON) -m unittest discover -t bin -s bin/new_script
sdist:
$(PYTHON) setup.py sdist
.PHONY: build clean install sdist html dirhtml singlehtml pickle json htmlhelp qthelp applehelp devhelp epub latex latexpdf latexpdfja text man texinfo info gettext changes linkcheck doctest coverage xml pseudoxml
html dirhtml singlehtml pickle json htmlhelp qthelp applehelp devhelp epub latex latexpdf latexpdfja text man texinfo info gettext changes linkcheck doctest coverage xml pseudoxml:
cd share/new_script/doc && make $@