sdl

FORK: Simple Directmedia Layer
git clone https://git.neptards.moe/neptards/sdl.git
Log | Files | Refs

Makefile-manual (244B)


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