head	1.5;
access;
symbols
	PyQwt-4-2-1:1.2;
locks; strict;
comment	@# @;


1.5
date	2007.07.26.19.56.15;	author gvermeul;	state Exp;
branches;
next	1.4;

1.4
date	2007.07.26.19.30.57;	author gvermeul;	state Exp;
branches;
next	1.3;

1.3
date	2006.07.26.08.36.38;	author gvermeul;	state Exp;
branches;
next	1.2;

1.2
date	2006.03.27.22.20.08;	author gvermeul;	state Exp;
branches;
next	1.1;

1.1
date	2006.03.26.15.07.39;	author gvermeul;	state Exp;
branches;
next	;


desc
@@


1.5
log
@Remove emacs cruft in distclean.
@
text
@# 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
@


1.4
log
@Force to rebuild the documentation when making a source tarball.
@
text
@d59 1
a59 1
	find . -name '*.pyc' | xargs rm -f
@


1.3
log
@Get the number of CPUs on Linux *and* Darwin.
@
text
@d52 1
@


1.2
log
@Replace --tracing with --trace.
@
text
@d13 7
d21 1
d23 3
a25 2
# To compile and link the Qwt sources statically into Pyqwt.
QWT := ../qwt-4.2.0
@


1.1
log
@Initial import.
@
text
@d27 1
a27 1
	&& python configure.py --tracing -Q $(QWT) -j $(JOBS) \
@

