Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


HVM capability enhancement: asynchronous upcalls to ROS userspace
[palacios.git] / guest / linux / hvm-ros / Makefile
index 96ce1f3..f818a39 100644 (file)
@@ -1,14 +1,17 @@
 all: libv3_hvm_ros_user.a test
 
-libv3_hvm_ros_user.a: v3_hvm_ros_user.o
-       ar ruv libv3_hvm_ros_user.a v3_hvm_ros_user.o
+libv3_hvm_ros_user.a: v3_hvm_ros_user.o v3_hvm_ros_user_low_level.o
+       ar ruv libv3_hvm_ros_user.a v3_hvm_ros_user.o v3_hvm_ros_user_low_level.o
 
 v3_hvm_ros_user.o: v3_hvm_ros_user.c v3_hvm_ros_user.h 
        gcc -Wall -c v3_hvm_ros_user.c
 
+v3_hvm_ros_user_low_level.o: v3_hvm_ros_user_low_level.S
+       gcc -Wall -c v3_hvm_ros_user_low_level.S
+
 
 test: test.c libv3_hvm_ros_user.a v3_hvm_ros_user.h
        gcc -Wall -static test.c -L. -lv3_hvm_ros_user -o test
 
 clean:
-       rm -f libv3_hvm_ros_user.a v3_hvm_ros_user.o test
+       rm -f libv3_hvm_ros_user.a v3_hvm_ros_user.o v3_hvm_ros_user_low_level.o test