core-agent-linux/misc/Makefile
Marek Marczykowski-Górecki fd55d48126 Move meminfo-writer to linux-utils repo
It is common for both dom0 and VM.  So move to linux-specific repo (not
VM-specific).
2014-01-05 05:38:10 +01:00

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