Makefile 162 B

1234567891011121314
  1. all: build
  2. SRC=wpaspy.c
  3. build: $(SRC) setup.py
  4. python setup.py build
  5. install:
  6. python setup.py install
  7. clean:
  8. python setup.py clean
  9. rm -f *~
  10. rm -rf build