mirror of
https://github.com/RPCS3/hidapi.git
synced 2026-01-31 01:25:21 +01:00
This adds a FreeBSD implementation to HIDAPI using the libusb back-end. The libusb/ folder now contains the libusb implementation and associated Makefiles for Linux and FreeBSD. All libusb code has been removed from the linux/ folder, so that the code in libusb/ can be shared by both (and future) platforms. This commit renames linux/hid-libusb.c to libusb/hid.c. Make sure to use git log --follow to see full history of that file. This code was written by: Alex Dupre <ale@FreeBSD.org> Alan Ott <alan@signal11.us>
50 lines
1.0 KiB
Makefile
50 lines
1.0 KiB
Makefile
###########################################
|
|
# Simple Makefile for HIDAPI test program
|
|
#
|
|
# Alan Ott
|
|
# Signal 11 Software
|
|
# 2010-06-01
|
|
###########################################
|
|
|
|
all: hidtest-hidraw libs
|
|
|
|
libs: libhidapi-hidraw.so
|
|
|
|
CC ?= gcc
|
|
CFLAGS ?= -Wall -g -fpic
|
|
|
|
CXX ?= g++
|
|
CXXFLAGS ?= -Wall -g -fpic
|
|
|
|
LDFLAGS ?= -Wall -g
|
|
|
|
|
|
COBJS_HIDRAW = hid.o
|
|
CPPOBJS = ../hidtest/hidtest.o
|
|
OBJS = $(COBJS) $(CPPOBJS)
|
|
LIBS_UDEV = `pkg-config libudev --libs` -lrt
|
|
LIBS = $(LIBS_UDEV)
|
|
INCLUDES ?= -I../hidapi `pkg-config libusb-1.0 --cflags`
|
|
|
|
|
|
# Console Test Program
|
|
hidtest-hidraw: $(COBJS_HIDRAW) $(CPPOBJS)
|
|
$(CXX) $(LDFLAGS) $^ $(LIBS_UDEV) -o $@
|
|
|
|
# Shared Libs
|
|
libhidapi-hidraw.so: $(COBJS_HIDRAW)
|
|
$(CC) $(LDFLAGS) $(LIBS_UDEV) -shared -fpic -Wl,-soname,$@.0 $^ -o $@
|
|
|
|
# Objects
|
|
$(COBJS): %.o: %.c
|
|
$(CC) $(CFLAGS) -c $(INCLUDES) $< -o $@
|
|
|
|
$(CPPOBJS): %.o: %.cpp
|
|
$(CXX) $(CXXFLAGS) -c $(INCLUDES) $< -o $@
|
|
|
|
|
|
clean:
|
|
rm -f $(OBJS) hidtest-hidraw libhidapi-hidraw.so ../hidtest/hidtest.o
|
|
|
|
.PHONY: clean libs
|