source: trunk/lang/python/Makefile.in @ 3719

Last change on this file since 3719 was 3471, checked in by ldelgass, 11 years ago

Makefile fixes: make 'install' target always depend on 'all' target. This
ensures that an up to date build exists before installing, and also permits
the use of "make install" in place of "make all install" or "make all; make install". It doesn't affect the existing build scripts. Likewise, make 'distclean'
always depend on 'clean'. Remove empty contour objects example, as there is no
corresponding object class. Also declare all the standard targets 'all, install,
etc' in the .PHONY section for performance.

File size: 1.4 KB
Line 
1
2bindir          = @bindir@
3datadir         = @datadir@
4datarootdir     = @datarootdir@
5exec_prefix     = @exec_prefix@
6includedir      = @includedir@
7libdir          = @libdir@
8mandir          = @mandir@
9prefix          = @prefix@
10srcdir          = @srcdir@
11srcdir2         := $(shell cd $(srcdir); pwd)
12
13INSTALL         = @INSTALL@
14MKDIR_P         = @MKDIR_P@
15LN_S            = @LN_S@
16INSTALL_PROGRAM = ${INSTALL} -m 755
17INSTALL_DATA    = ${INSTALL} -m 644
18INSTALL_SCRIPT  = ${INSTALL} -m 644
19RM              = rm -f
20VPATH           = $(srcdir)
21
22PYTHON          = @PYTHON@
23PYTHON_INCDIR   = @PYTHON_INCDIR@
24PYTHON_VERSION  = @PYTHON_VERSION@
25
26python_flags    = --library-dirs=$(libdir):../../src/core \
27                  --include-dirs=$(srcdir)/../../src/core:$(PYTHON_INCDIR)
28pythonlib       = $(libdir)/python$(PYTHON_VERSION)/site-packages
29envfile         = python.env
30
31ARCHFLAGS       =
32export ARCHFLAGS
33
34.PHONY: all install clean distclean
35
36#
37# Python distutils doesn't handle VPATH correctly. So copy the sources
38# into a temporary directory.
39#
40all: build/tmp
41        $(PYTHON) setup.py build_ext $(python_flags) build
42
43build/tmp:
44        $(MKDIR_P) -m 0755 build/tmp
45        $(LN_S) $(srcdir2)/Rappture/*.cc build/tmp
46
47install: all
48        $(MKDIR_P) -m 0755 $(pythonlib)
49        $(PYTHON) setup.py install --install-lib=$(pythonlib)
50
51clean:
52        $(PYTHON) setup.py clean
53        $(RM) -rf build
54
55distclean: clean
56        $(RM) Makefile setup.py *~
Note: See TracBrowser for help on using the repository browser.