core-agent-linux/misc/Makefile
2014-02-16 11:34:22 +01:00

11 lines
263 B
Makefile

CC=gcc
CFLAGS=-Wall -Wextra -Werror -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