core-agent-linux/misc/Makefile

11 lines
247 B
Makefile
Raw Normal View History

CC=gcc
2010-09-10 11:38:06 +02:00
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