ports

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

libsigcpp.mk (437B)


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