From f5c89b3bd5d74849757fd5b4d1a300068522a3ca Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Fri, 6 Mar 2026 13:26:57 -0800 Subject: Initial commit --- SDL-3.2.8/src/hidapi/libusb/Makefile.linux | 42 ++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 SDL-3.2.8/src/hidapi/libusb/Makefile.linux (limited to 'SDL-3.2.8/src/hidapi/libusb/Makefile.linux') diff --git a/SDL-3.2.8/src/hidapi/libusb/Makefile.linux b/SDL-3.2.8/src/hidapi/libusb/Makefile.linux new file mode 100644 index 0000000..527f6b3 --- /dev/null +++ b/SDL-3.2.8/src/hidapi/libusb/Makefile.linux @@ -0,0 +1,42 @@ +########################################### +# Simple Makefile for HIDAPI test program +# +# Alan Ott +# Signal 11 Software +# 2010-06-01 +########################################### + +all: hidtest-libusb libs + +libs: libhidapi-libusb.so + +CC ?= gcc +CFLAGS ?= -Wall -g -fpic + +LDFLAGS ?= -Wall -g + +COBJS_LIBUSB = hid.o +COBJS = $(COBJS_LIBUSB) ../hidtest/test.o +OBJS = $(COBJS) +LIBS_USB = `pkg-config libusb-1.0 --libs` -lrt -lpthread +LIBS = $(LIBS_USB) +INCLUDES ?= -I../hidapi -I. `pkg-config libusb-1.0 --cflags` + + +# Console Test Program +hidtest-libusb: $(COBJS) + $(CC) $(LDFLAGS) $^ $(LIBS_USB) -o $@ + +# Shared Libs +libhidapi-libusb.so: $(COBJS_LIBUSB) + $(CC) $(LDFLAGS) $(LIBS_USB) -shared -fpic -Wl,-soname,$@.0 $^ -o $@ + +# Objects +$(COBJS): %.o: %.c + $(CC) $(CFLAGS) -c $(INCLUDES) $< -o $@ + + +clean: + rm -f $(OBJS) hidtest-libusb libhidapi-libusb.so ../hidtest/hidtest.o + +.PHONY: clean libs -- cgit v1.2.3