Makefile-manual 244 B

123456789101112131415161718
  1. OS=$(shell uname)
  2. ifeq ($(OS), Linux)
  3. FILE=Makefile.linux
  4. endif
  5. ifeq ($(OS), FreeBSD)
  6. FILE=Makefile.freebsd
  7. endif
  8. ifeq ($(FILE), )
  9. all:
  10. $(error Your platform ${OS} is not supported by hidapi/libusb at this time.)
  11. endif
  12. include $(FILE)