mirror of
https://github.com/RPCS3/hidapi.git
synced 2024-11-26 19:40:35 +00:00
c95795ab5c
- fix including platform-specific includes when HIDAPI is a CMake subdirectory; - check libusb and winapi platform-specific headers with hidtest;
40 lines
772 B
Makefile
40 lines
772 B
Makefile
###########################################
|
|
# 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
|