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.


Guest-side test tools, config, and X11 stuff for PARAGRAPH graphics device
[palacios.git] / guest / linux / paragraph / write_paragraph / Makefile
diff --git a/guest/linux/paragraph/write_paragraph/Makefile b/guest/linux/paragraph/write_paragraph/Makefile
new file mode 100644 (file)
index 0000000..0958a29
--- /dev/null
@@ -0,0 +1,11 @@
+all: write_paragraph_devmem write_paragraph_sysfs
+
+write_paragraph_devmem: write_paragraph_devmem.c
+       gcc -static write_paragraph_devmem.c -o write_paragraph_devmem
+
+write_paragraph_sysfs: write_paragraph_sysfs.c
+       gcc -static write_paragraph_sysfs.c -o write_paragraph_sysfs
+
+clean:
+       rm -f write_paragraph_devmem write_paragraph_sysfs
+