Makefile 263 B

12345678910
  1. CC=gcc
  2. CFLAGS=-Wall -Wextra -Werror -g -O3
  3. all: xenstore-watch python
  4. xenstore-watch: xenstore-watch.o
  5. $(CC) -o xenstore-watch xenstore-watch.o -lxenstore
  6. python:
  7. python -m compileall .
  8. python -O -m compileall .
  9. clean:
  10. rm -f xenstore-watch *.o *~ *.pyc *.pyo