Skip to content

Commit

Permalink
Merge pull request rumpkernel-attic#2 from tombousso/master
Browse files Browse the repository at this point in the history
Update buildme.sh
  • Loading branch information
anttikantee committed Aug 11, 2014
2 parents fc772f5 + b032cab commit 5f74b88
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions buildme.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# ./buildrump.sh -s ${APPSTACK_SRC} -V MKPIC=no -V RUMP_KERNEL_IS_LIBC=1 \
# -V RUMP_CURLWP=hypercall -k -N -H kernelheaders fullbuild

APPSTACK_SRC= /home/pooka/src/src-netbsd-appstack
BUILDRUMP_SH= /home/pooka/src/buildrump.sh
APPSTACK_SRC=/home/pooka/src/src-netbsd-appstack
BUILDRUMP_SH=/home/pooka/src/buildrump.sh

MORELIBS="external/bsd/flex/lib
crypto/external/bsd/openssl/lib/libcrypto
Expand All @@ -30,3 +30,12 @@ for lib in ${LIBS}; do
makeuserlib ${RUMPMAKE} ${lib}
done

APPSTACK_LIBS=`rumpmake -f ${APPSTACK_SRC}/sys/rump/dev/Makefile.rumpdevcomp -V '${RUMPPCIDEVS}'`

for lib in ${APPSTACK_LIBS}; do
( cd ${APPSTACK_SRC}/sys/rump/dev/lib/lib${lib}
${rumpmake} obj
${rumpmake} dependall
${rumpmake} install
)
done

0 comments on commit 5f74b88

Please sign in to comment.