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.


Linux guest user library and test application for ROS<->HRT interaction in an HVM
[palacios.git] / guest / linux / hvm-ros / Makefile
1 all: libv3_hvm_ros_user.a test
2
3 libv3_hvm_ros_user.a: v3_hvm_ros_user.o
4         ar ruv libv3_hvm_ros_user.a v3_hvm_ros_user.o
5
6 v3_hvm_ros_user.o: v3_hvm_ros_user.c v3_hvm_ros_user.h 
7         gcc -Wall -c v3_hvm_ros_user.c
8
9
10 test: test.c libv3_hvm_ros_user.a v3_hvm_ros_user.h
11         gcc -Wall -static test.c -L. -lv3_hvm_ros_user -o test
12
13 clean:
14         rm -f libv3_hvm_ros_user.a v3_hvm_ros_user.o test