ports

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

tmux.mk (394B)


      1 TARG = tmux
      2 DEPS = ncurses libevent
      3 INSTALL_BIN = tmux
      4 INSTALL_MAN1 = tmux.1
      5 
      6 <$mkbuild/mk.common
      7 
      8 tmux:QV:
      9 	export CFLAGS="$CFLAGS $DEPS_CFLAGS"
     10 	export LDFLAGS="$LDFLAGS $DEPS_LDFLAGS"
     11 	CC="$CC" ./configure \
     12 		--build="${TOOLCHAIN_TRIPLET}" \
     13 		--host="${HOST_TOOLCHAIN_TRIPLET}" \
     14 		--prefix="$PREFIX" \
     15 		--mandir="$ROOT/share/man" \
     16 		--disable-shared \
     17 		--enable-static
     18 	make -j$nprocs