Makefile.am 644 B

1234567891011121314151617181920212223
  1. # python/Makefile.am
  2. # copyright (C) 2003 by Frank Mori Hess
  3. # email : fmhess@users.sourceforge.net
  4. #
  5. # This Makefile.am is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2 of the License, or
  8. # (at your option) any later version.
  9. EXTRA_DIST = gpibtest.py setup.py Gpib.py gpibinter.c
  10. all-local: build
  11. build: gpibinter.c
  12. -{ $(PYTHON) setup.py build && touch build; } || { $(RM) -r build; exit 1; }
  13. install-data-local:
  14. -$(PYTHON) setup.py install --prefix=$(DESTDIR)$(prefix)
  15. clean-local:
  16. -$(RM) -r build