1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-28 16:41:20 +00:00
morpheus/mkfile
Daniel Bainton 6565433b94 Add install and fetch targets to mkfile
No longer build only stage0, build whatever ports builds by default
2014-04-07 16:35:33 +03:00

26 lines
549 B
Makefile

`{ test -e config.mk || cp config.def.mk config.mk }
configmk = `{pwd}/config.mk
mkbuild = `{pwd}/mkbuild
all:QV:
cd ports
env -i PATH="$PATH" configmk="$configmk" mkbuild="$mkbuild" mk
submodule:QV:
git submodule init
git submodule update --remote
install:QV:
cd ports
env -i PATH="$PATH" configmk="$configmk" mkbuild="$mkbuild" mk install ROOT="${ROOT}"
clean:QV:
cd ports
env -i PATH="$PATH" configmk="$configmk" mkbuild="$mkbuild" mk clean
fetch:QV:
cd ports
env -i PATH="$PATH" configmk="$configmk" mkbuild="$mkbuild" mk fetch