make-rules/shared-macros.mk
changeset 978 f7d58c85fe8d
parent 975 44e81e837f1f
child 990 6bfca1239ccb
equal deleted inserted replaced
977:4a6b2f8dca71 978:f7d58c85fe8d
   281 PYTHON.2.6.64 =	/usr/bin/$(MACH64)/python2.6
   281 PYTHON.2.6.64 =	/usr/bin/$(MACH64)/python2.6
   282 
   282 
   283 PYTHON.2.7.32 =	/usr/bin/python2.7
   283 PYTHON.2.7.32 =	/usr/bin/python2.7
   284 PYTHON.2.7.64 =	/usr/bin/$(MACH64)/python2.7
   284 PYTHON.2.7.64 =	/usr/bin/$(MACH64)/python2.7
   285 
   285 
   286 PYTHON.32 =	$(PYTHON.$(PYTHON_VERSION).$(BITS))
   286 PYTHON.32 =	$(PYTHON.$(PYTHON_VERSION).32)
   287 PYTHON.64 =	$(PYTHON.$(PYTHON_VERSION).$(BITS))
   287 PYTHON.64 =	$(PYTHON.$(PYTHON_VERSION).64)
   288 PYTHON =	$(PYTHON.$(PYTHON_VERSION).$(BITS))
   288 PYTHON =	$(PYTHON.$(PYTHON_VERSION).$(BITS))
   289 
   289 
   290 # The default is site-packages, but that directory belongs to the end-user.
   290 # The default is site-packages, but that directory belongs to the end-user.
   291 # Modules which are shipped by the OS but not with the core Python distribution
   291 # Modules which are shipped by the OS but not with the core Python distribution
   292 # belong in vendor-packages.
   292 # belong in vendor-packages.
   350 INS.dir=        $(INSTALL) -d $@
   350 INS.dir=        $(INSTALL) -d $@
   351 INS.file=       $(INSTALL) -m 444 $< $(@D)
   351 INS.file=       $(INSTALL) -m 444 $< $(@D)
   352 
   352 
   353 PKG_CONFIG_PATH.32 = /usr/lib/pkgconfig
   353 PKG_CONFIG_PATH.32 = /usr/lib/pkgconfig
   354 PKG_CONFIG_PATH.64 = /usr/lib/$(MACH64)/pkgconfig
   354 PKG_CONFIG_PATH.64 = /usr/lib/$(MACH64)/pkgconfig
   355 PKG_CONFIG_PATH = PKG_CONFIG_PATH.$(BITS)
   355 PKG_CONFIG_PATH = $(PKG_CONFIG_PATH.$(BITS))
   356 
   356 
   357 
   357 
   358 #
   358 #
   359 # C preprocessor flag sets to ease feature selection.  Add the required
   359 # C preprocessor flag sets to ease feature selection.  Add the required
   360 # feature to your Makefile with CPPFLAGS += $(FEATURE_MACRO) and add to
   360 # feature to your Makefile with CPPFLAGS += $(FEATURE_MACRO) and add to