ports

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

xorglibpciaccess.mk (474B)


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