Edit

kc3-lang/SDL/src/hidapi/libusb/Makefile-manual

Branch :

  • Show log

    Commit

  • Author : Sam Lantinga
    Date : 2018-08-09 16:05:48
    Hash : 4f41f07d
    Message : Added missing files from previous commits

  • src/hidapi/libusb/Makefile-manual
  • 
    OS=$(shell uname)
    
    ifeq ($(OS), Linux)
    	FILE=Makefile.linux
    endif
    
    ifeq ($(OS), FreeBSD)
    	FILE=Makefile.freebsd
    endif
    
    ifeq ($(FILE), )
    all:
    	$(error Your platform ${OS} is not supported by hidapi/libusb at this time.)
    endif
    
    include $(FILE)