]> xenbits.xensource.com Git - rumpuser-xen.git/commitdiff
build xenif in objdir
authorAntti Kantee <pooka@iki.fi>
Sat, 7 Sep 2013 11:32:04 +0000 (14:32 +0300)
committerAntti Kantee <pooka@iki.fi>
Sat, 7 Sep 2013 11:32:04 +0000 (14:32 +0300)
buildxen.sh

index 28d2982514478d53e58b17ddc6fd812abe1e483b..4f85c86be5a12e36ddc8eb755ae179895285cf86 100755 (executable)
@@ -75,9 +75,11 @@ echo '>> done with headers'
 
 # build networking driver
 (
+  OBJS=`pwd`/rumpobj/rumpxenif
   cd rumpxenif
-  ${RMAKE} obj
-  ${RMAKE} MKPIC=no dependall && ${RMAKE} install
+  ${RMAKE} MAKEOBJDIR=${OBJS} obj
+  ${RMAKE} MAKEOBJDIR=${OBJS} MKPIC=no dependall
+  ${RMAKE} MAKEOBJDIR=${OBJS} MKPIC=no install
 )
 
 makeuserlib ()