parent
032af09b2a
commit
1af792bd8d
8
Makefile
8
Makefile
@ -3,12 +3,11 @@ CC = gcc
|
|||||||
VERSION = $(shell git describe --tags --abbrev=0)
|
VERSION = $(shell git describe --tags --abbrev=0)
|
||||||
GITCOUNT = $(shell git rev-list HEAD --count)
|
GITCOUNT = $(shell git rev-list HEAD --count)
|
||||||
UNAME = $(shell uname)
|
UNAME = $(shell uname)
|
||||||
CFLAGS = -g -O -Wall -Werror -DVERSION='"$(VERSION).$(GITCOUNT)"' \
|
CFLAGS = -g -O -Wall -Werror -DVERSION='"$(VERSION).$(GITCOUNT)"'
|
||||||
$(shell pkg-config --cflags libusb-1.0)
|
|
||||||
LDFLAGS = -g
|
LDFLAGS = -g
|
||||||
|
|
||||||
OBJS = main.o util.o radio.o dfu-libusb.o uv380.o md380.o rd5r.o gd77.o hid.o serial.o d868uv.o
|
OBJS = main.o util.o radio.o dfu-libusb.o uv380.o md380.o rd5r.o gd77.o hid.o serial.o d868uv.o
|
||||||
LIBS = $(shell pkg-config --libs --static libusb-1.0)
|
LIBS =
|
||||||
|
|
||||||
#
|
#
|
||||||
# Linux
|
# Linux
|
||||||
@ -18,6 +17,9 @@ LIBS = $(shell pkg-config --libs --static libusb-1.0)
|
|||||||
#
|
#
|
||||||
ifeq ($(UNAME),Linux)
|
ifeq ($(UNAME),Linux)
|
||||||
OBJS += hid-libusb.o
|
OBJS += hid-libusb.o
|
||||||
|
CFLAGS += $(shell pkg-config --cflags libusb-1.0)
|
||||||
|
LIBS += $(shell pkg-config --libs --static libusb-1.0)
|
||||||
|
|
||||||
LIBUSB = /usr/lib/x86_64-linux-gnu/libusb-1.0.a
|
LIBUSB = /usr/lib/x86_64-linux-gnu/libusb-1.0.a
|
||||||
ifeq ($(wildcard $(LIBUSB)),$(LIBUSB))
|
ifeq ($(wildcard $(LIBUSB)),$(LIBUSB))
|
||||||
# Link libusb statically, when possible
|
# Link libusb statically, when possible
|
||||||
|
Loading…
Reference in New Issue
Block a user