ports

morpheus ports
git clone git://git.2f30.org/ports
Log | Files | Refs | LICENSE

libpthreadstubs.mk (405B)


      1 TARG = libpthreadstubs
      2 
      3 <$mkbuild/mk.common-noinst
      4 
      5 libpthreadstubs:QV:
      6 	CC="$CC" ./configure \
      7 		--build="${TOOLCHAIN_TRIPLET}" \
      8 		--host="${HOST_TOOLCHAIN_TRIPLET}" \
      9 		--prefix="$PREFIX" \
     10 		--disable-shared \
     11 		--enable-static
     12 	make -j$nprocs
     13 	# install lib for use as a dependency.
     14 	make -j$nprocs install DESTDIR=`pwd`/lib
     15 	# remove .la files for now ?
     16 	find `pwd`/lib -iname "*.la" -exec rm {} \;