File: Makefile-manual

package info (click to toggle)
openzwave 1.5%2Bds-6
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 6,436 kB
  • sloc: cpp: 42,219; xml: 13,497; ansic: 4,822; cs: 2,211; makefile: 497; sh: 160; perl: 18
file content (18 lines) | stat: -rw-r--r-- 244 bytes parent folder | download | duplicates (18)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18


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)