Home | History | Annotate | Line # | Download | only in config
      1 ifeq ($(MULTIBUILDTOP),)
      2 BITS=$(shell if test -z "`$(CC) -x c -E /dev/null -g3 -o - | grep 64BIT`" ; then \
      3     echo '64'; else echo '32'; fi)
      4 ARX=$(shell echo $(AR) | sed -e 's/-X[^ ]*//g')
      5 MAJOR=$(firstword $(subst :, ,$(libtool_VERSION)))
      6 all-local:
      7 	-rm -f .libs/$(PACKAGE).a ../pthread/$(PACKAGE)/.libs/$(PACKAGE).a
      8 	$(AR) rc .libs/$(PACKAGE).a .libs/$(PACKAGE).so.$(MAJOR)
      9 	$(AR) rc ../pthread/$(PACKAGE)/.libs/$(PACKAGE).a ../pthread/$(PACKAGE)/.libs/$(PACKAGE).so.$(MAJOR)
     10 	$(ARX) -X$(BITS) rc .libs/$(PACKAGE).a ../ppc$(BITS)/$(PACKAGE)/.libs/$(PACKAGE).so.$(MAJOR)
     11 	$(ARX) -X$(BITS) rc ../pthread/$(PACKAGE)/.libs/$(PACKAGE).a ../pthread/ppc$(BITS)/$(PACKAGE)/.libs/$(PACKAGE).so.$(MAJOR)
     12 endif
     13 
     14