Changeset 1090 for trunk/lang/python/Makefile.in
- Timestamp:
- Aug 4, 2008, 5:51:37 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lang/python/Makefile.in
r1082 r1090 23 23 PYTHON_VERSION = @PYTHON_VERSION@ 24 24 pythonlib = $$RAPPTURE_INSTALL_DIR/lib/python$(PYTHON_VERSION)/site-packages 25 envfile = _python.env 25 26 26 27 ARCHFLAGS = … … 30 31 # into a temporary directory. 31 32 # 32 all: copy_sources python.env33 all: copy_sources $(envfile) 33 34 $(PYTHON) setup.py build_ext $(PYTHON_FLAGS) build 34 35 … … 40 41 install: 41 42 $(PYTHON) setup.py install --prefix=$(prefix) 42 $(INSTALL) -m 555 python.env$(bindir)43 $(INSTALL) -m 555 $(envfile) $(bindir) 43 44 clean: 44 45 $(PYTHON) setup.py clean 45 46 $(RM) -rf build 46 47 47 python.env:48 echo 'export PYTHONPATH=$(pythonlib):$$PYTHONPATH' > python.env48 $(envfile): 49 echo 'export PYTHONPATH=$(pythonlib):$$PYTHONPATH' > $(envfile) 49 50 50 51 distclean: clean
Note: See TracChangeset
for help on using the changeset viewer.