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
1 all: write_paragraph_devmem write_paragraph_sysfs
2
3 write_paragraph_devmem: write_paragraph_devmem.c
4         gcc -static write_paragraph_devmem.c -o write_paragraph_devmem
5
6 write_paragraph_sysfs: write_paragraph_sysfs.c
7         gcc -static write_paragraph_sysfs.c -o write_paragraph_sysfs
8
9 clean:
10         rm -f write_paragraph_devmem write_paragraph_sysfs
11