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 --- .../SDL-3.2.8/src/hidapi/libusb/Makefile.freebsd | 39 ---------------------- 1 file changed, 39 deletions(-) delete mode 100644 contrib/SDL-3.2.8/src/hidapi/libusb/Makefile.freebsd (limited to 'contrib/SDL-3.2.8/src/hidapi/libusb/Makefile.freebsd') diff --git a/contrib/SDL-3.2.8/src/hidapi/libusb/Makefile.freebsd b/contrib/SDL-3.2.8/src/hidapi/libusb/Makefile.freebsd deleted file mode 100644 index c52b355..0000000 --- a/contrib/SDL-3.2.8/src/hidapi/libusb/Makefile.freebsd +++ /dev/null @@ -1,39 +0,0 @@ -########################################### -# Simple Makefile for HIDAPI test program -# -# Alan Ott -# Signal 11 Software -# 2010-06-01 -########################################### - -all: hidtest libs - -libs: libhidapi.so - -CC ?= cc -CFLAGS ?= -Wall -g -fPIC - -COBJS = hid.o ../hidtest/test.o -OBJS = $(COBJS) -INCLUDES = -I../hidapi -I. -I/usr/local/include -LDFLAGS = -L/usr/local/lib -LIBS = -lusb -liconv -pthread - - -# Console Test Program -hidtest: $(OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@ $(LIBS) - -# Shared Libs -libhidapi.so: $(COBJS) - $(CC) $(LDFLAGS) -shared -Wl,-soname,$@.0 $^ -o $@ $(LIBS) - -# Objects -$(COBJS): %.o: %.c - $(CC) $(CFLAGS) -c $(INCLUDES) $< -o $@ - - -clean: - rm -f $(OBJS) hidtest libhidapi.so ../hidtest/hidtest.o - -.PHONY: clean libs -- cgit v1.2.3