ports

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

pcre.mk (442B)


      1 TARG = pcre
      2 DEPS = zlib
      3 
      4 <$mkbuild/mk.common-noinst
      5 
      6 pcre:QV:
      7 	export CFLAGS="$CFLAGS $DEPS_CFLAGS"
      8 	export LDFLAGS="$LDFLAGS $DEPS_LDFLAGS"
      9 	CC="$CC" ./configure \
     10 		--build="${TOOLCHAIN_TRIPLET}" \
     11 		--host="${HOST_TOOLCHAIN_TRIPLET}" \
     12 		--prefix="$PREFIX" \
     13 		--mandir="$ROOT/share/man" \
     14 		--disable-cpp \
     15 		--disable-shared \
     16 		--enable-static \
     17 		--enable-unicode-properties \
     18 		--enable-pcregrep-libz \
     19 		--enable-utf
     20 	make -j$nprocs