optipng.mk (365B)
1 TARG = optipng 2 DEPS = libpng zlib 3 4 <$mkbuild/mk.common-noinst 5 6 optipng:QV: 7 export CFLAGS="$CFLAGS $DEPS_CFLAGS" 8 export LDFLAGS="$LDFLAGS $DEPS_LDFLAGS" 9 CC="$CC" ./configure \ 10 -prefix="$PREFIX" \ 11 -mandir="$ROOT/share/man" \ 12 -with-system-libs \ 13 -with-system-libpng \ 14 -with-system-zlib 15 make -j$nprocs 16 17 install:QV: 18 make -j$nprocs install DESTDIR="$ROOT"