summaryrefslogtreecommitdiff
path: root/contrib/SDL-3.2.8/src/hidapi/libusb/Makefile.freebsd
blob: c52b355d1186a64ef5cce485817fc5f855ce613a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
###########################################
# 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