mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-02-18 09:28:22 +00:00
43 lines
847 B
Plaintext
43 lines
847 B
Plaintext
###########################################
|
|
# Simple Makefile for HIDAPI test program
|
|
#
|
|
# Alan Ott
|
|
# Signal 11 Software
|
|
# 2010-06-01
|
|
###########################################
|
|
|
|
all: hidtest-hidraw libs
|
|
|
|
libs: libhidapi-hidraw.so
|
|
|
|
CC ?= gcc
|
|
CFLAGS ?= -Wall -g -fpic
|
|
|
|
LDFLAGS ?= -Wall -g
|
|
|
|
|
|
COBJS = hid.o ../hidtest/test.o
|
|
OBJS = $(COBJS)
|
|
LIBS_UDEV = `pkg-config libudev --libs` -lrt
|
|
LIBS = $(LIBS_UDEV)
|
|
INCLUDES ?= -I../hidapi `pkg-config libusb-1.0 --cflags`
|
|
|
|
|
|
# Console Test Program
|
|
hidtest-hidraw: $(COBJS)
|
|
$(CC) $(LDFLAGS) $^ $(LIBS_UDEV) -o $@
|
|
|
|
# Shared Libs
|
|
libhidapi-hidraw.so: $(COBJS)
|
|
$(CC) $(LDFLAGS) $(LIBS_UDEV) -shared -fpic -Wl,-soname,$@.0 $^ -o $@
|
|
|
|
# Objects
|
|
$(COBJS): %.o: %.c
|
|
$(CC) $(CFLAGS) -c $(INCLUDES) $< -o $@
|
|
|
|
|
|
clean:
|
|
rm -f $(OBJS) hidtest-hidraw libhidapi-hidraw.so $(COBJS)
|
|
|
|
.PHONY: clean libs
|