ports

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

libgiflib.mk (399B)


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