libfribidi.mk (500B)
1 TARG = libfribidi 2 3 <$mkbuild/mk.common-noinst 4 5 libfribidi:QV: 6 CC="$CC" ./configure \ 7 --build="${TOOLCHAIN_TRIPLET}" \ 8 --host="${HOST_TOOLCHAIN_TRIPLET}" \ 9 --prefix="$PREFIX" \ 10 --mandir="$ROOT/share/man" \ 11 --disable-shared \ 12 --with-glib=no \ 13 --enable-static 14 make -j$nprocs 15 # install lib for use as a dependency. 16 make -j$nprocs install DESTDIR="`pwd`/lib" 17 # remove .la files for now ? 18 find `pwd`/lib -iname "*.la" -exec rm {} \; 19 20 install:QV: 21 make -j$nprocs install DESTDIR="$ROOT"