Recognize RD-5R files.

This commit is contained in:
Serge
2018-09-15 15:43:23 -07:00
parent 1a60618c0e
commit ecb1d074cc
5 changed files with 2295 additions and 3 deletions

View File

@@ -1,12 +1,12 @@
CC = gcc
VERSION = 0.7
VERSION = $(shell git describe --tags --abbrev=0)
GITCOUNT = $(shell git rev-list HEAD --count)
UNAME = $(shell uname)
CFLAGS = -g -O -Wall -Werror -DVERSION='"$(VERSION).$(GITCOUNT)"'
LDFLAGS = -g
OBJS = main.o util.o radio.o dfu-libusb.o uv380.o md380.o
OBJS = main.o util.o radio.o dfu-libusb.o uv380.o md380.o rd5r.o
LIBS = -lusb-1.0
# Linux
@@ -31,8 +31,11 @@ dmrconfig.linux: dmrconfig
###
dfu-libusb.o: dfu-libusb.c util.h
dfu-windows.o: dfu-windows.c util.h
hid-libusb.o: hid-libusb.c util.h
main.o: main.c radio.h util.h
md380.o: md380.c radio.h util.h
radio.o: radio.c radio.h util.h
rd5r.o: rd5r.c radio.h util.h
util.o: util.c util.h
uv380.o: uv380.c radio.h util.h