mirror of
https://github.com/RPCS3/hidapi.git
synced 2026-07-21 00:45:21 -04:00
74440e2dbb
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>
33 lines
614 B
Makefile
33 lines
614 B
Makefile
###########################################
|
|
# Simple Makefile for HIDAPI test program
|
|
#
|
|
# Alan Ott
|
|
# Signal 11 Software
|
|
# 2010-06-01
|
|
###########################################
|
|
|
|
all: testgui
|
|
|
|
CC=gcc
|
|
CXX=g++
|
|
COBJS=../libusb/hid.o
|
|
CPPOBJS=test.o
|
|
OBJS=$(COBJS) $(CPPOBJS)
|
|
CFLAGS=-I../hidapi -Wall -g -c `fox-config --cflags` `pkg-config libusb-1.0 --cflags`
|
|
LIBS=-ludev -lrt `fox-config --libs` `pkg-config libusb-1.0 --libs`
|
|
|
|
|
|
testgui: $(OBJS)
|
|
g++ -Wall -g $^ $(LIBS) -o testgui
|
|
|
|
$(COBJS): %.o: %.c
|
|
$(CC) $(CFLAGS) $< -o $@
|
|
|
|
$(CPPOBJS): %.o: %.cpp
|
|
$(CXX) $(CFLAGS) $< -o $@
|
|
|
|
clean:
|
|
rm *.o testgui
|
|
|
|
.PHONY: clean
|