ports

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

expat.mk (423B)


      1 TARG = expat
      2 
      3 <$mkbuild/mk.common-noinst
      4 
      5 expat:QV:
      6 	./configure \
      7 		--prefix="$PREFIX" \
      8 		--mandir="$ROOT/share/man" \
      9 		--disable-shared \
     10 		--enable-static
     11 	# make and install.
     12 	make -j$nprocs install \
     13 		LDFLAGS="-all-static $LDFLAGS" DESTDIR="`pwd`/lib"
     14 	# remove .la files for now ?
     15 	find `pwd`/lib -iname "*.la" -exec rm {} \;
     16 
     17 install:QV:
     18 	make -j$nprocs install \
     19 		LDFLAGS="-all-static $LDFLAGS" DESTDIR="$ROOT"