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.


symbiotic module fixes
[palacios.git] / symmods / linux / test / Makefile
index 757010d..0b4e233 100644 (file)
@@ -17,9 +17,16 @@ else
        PALACIOSDIR := $(PWD)/../../capsule
        V3_MOD_TYPE := V3_LINUX_MOD
 
-default:
+
+linux: FORCE
        $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
+
+capsule: FORCE 
        $(MAKE) -C $(PALACIOSDIR) MOD_NAME=$(V3_MOD_NAME) MOD_DIR=$(PWD) \
                MOD_OBJ=$(V3_MOD_OBJ) MOD_TYPE=$(V3_MOD_TYPE)
 
+default: linux capsule 
+
+FORCE:
+
 endif