-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGNUmakefile
62 lines (48 loc) · 1.31 KB
/
GNUmakefile
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# GNUmakefile for PyQwt
#
# There are at least two options to log the output of make:
#
# (1) Invoke make and tie stderr to stdout and redirect stdout to log.txt:
# make all 2&>1 >log.txt
# However, you do not see what is going on.
#
# (2) Use script to capture all screen output of make to log.txt:
# script -c 'make all' log.txt
# The script command appeared in 3.0BSD and is part of util-linux.
# To compile and link the Qwt sources statically into Pyqwt.
QWT := ../qwt-4.2.0
JOBS := 1
UNAME := $(shell uname)
ifeq ($(UNAME),Linux)
JOBS := $(shell getconf _NPROCESSORS_ONLN)
endif
ifeq ($(UNAME),Darwin)
JOBS := $(shell sysctl -n hw.ncpu)
endif
.PHONY: dist
all:
cd configure \
&& python configure.py -Q $(QWT) -j $(JOBS) \
&& $(MAKE) -j $(JOBS)
all-trace:
cd configure \
&& python configure.py --trace -Q $(QWT) -j $(JOBS) \
&& $(MAKE) -j $(JOBS)
symlinks:
ln -sf ../pyqwt5/support
(cd sip/qwt4qt3; ln -sf ../../../pyqwt5/sip/qwt5qt3/common)
# Installation
install: all
make -C configure install
install-trace: all-trace
make -C configure install
# build a distribution tarball
dist: distclean all
(cd Doc; rm doc; make)
python setup.py sdist --formats=gztar
clean:
find . -name '*~' | xargs rm -f
distclean: clean
find . -name '.#*' -o -name '*.pyc' | xargs rm -f
rm -rf configure/*qt3
# EOF