ports

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

libmad.mk (397B)


      1 TARG = libmad
      2 
      3 <$mkbuild/mk.common-noinst
      4 
      5 libmad:QV:
      6 	CC="$CC" ./configure \
      7 		--prefix="$PREFIX" \
      8 		--mandir="$ROOT/share/man" \
      9 		--disable-shared \
     10 		--enable-static
     11 	make -j$nprocs
     12 	# install lib for use as a dependency.
     13 	make -j$nprocs install 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 DESTDIR="$ROOT"