fd55d48126
It is common for both dom0 and VM. So move to linux-specific repo (not VM-specific).
11 lines
247 B
Makefile
11 lines
247 B
Makefile
CC=gcc
|
|
CFLAGS=-Wall -g -O3
|
|
all: xenstore-watch python
|
|
xenstore-watch: xenstore-watch.o
|
|
$(CC) -o xenstore-watch xenstore-watch.o -lxenstore
|
|
python:
|
|
python -m compileall .
|
|
python -O -m compileall .
|
|
clean:
|
|
rm -f xenstore-watch *.o *~ *.pyc *.pyo
|