11 lines
414 B
Plaintext
11 lines
414 B
Plaintext
|
ifeq ($(MULTIBUILDTOP),)
|
||
|
BITS=$(shell if test -z "`ar -X64 t .libs/$(PACKAGE).a`" ; then \
|
||
|
echo '64'; else echo '32'; fi)
|
||
|
#MAJOR=$(firstword $(subst :, ,$(libtool_VERSION)))
|
||
|
MAJOR=1
|
||
|
all-local:
|
||
|
ar -X$(BITS) rc .libs/$(PACKAGE).a ../ppc$(BITS)/$(PACKAGE)/.libs/$(PACKAGE).so.$(MAJOR)
|
||
|
ar -X$(BITS) rc ../pthread/$(PACKAGE)/.libs/$(PACKAGE).a ../pthread/ppc$(BITS)/$(PACKAGE)/.libs/$(PACKAGE).so.$(MAJOR)
|
||
|
endif
|
||
|
|