From 30f41c02aec763d32e62351452da9ef582bc3472 Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Fri, 6 Mar 2026 13:30:59 -0800 Subject: Move contrib libraries to contrib repo --- contrib/SDL-3.2.8/src/hidapi/libusb/Makefile.linux | 42 ---------------------- 1 file changed, 42 deletions(-) delete mode 100644 contrib/SDL-3.2.8/src/hidapi/libusb/Makefile.linux (limited to 'contrib/SDL-3.2.8/src/hidapi/libusb/Makefile.linux') diff --git a/contrib/SDL-3.2.8/src/hidapi/libusb/Makefile.linux b/contrib/SDL-3.2.8/src/hidapi/libusb/Makefile.linux deleted file mode 100644 index 527f6b3..0000000 --- a/contrib/SDL-3.2.8/src/hidapi/libusb/Makefile.linux +++ /dev/null @@ -1,42 +0,0 @@ -########################################### -# 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