mirror of
https://github.com/rockchip-linux/rkdeveloptool.git
synced 2024-11-26 19:44:24 +08:00
35a265bc44
OpenBSD bsdmake does not define $(RM) like GNU Make. As it's highly unlikely that anyone will ever want to override rm or has as system where rm is not in the path, let us just use the command directly for the sake of simplicity. Signed-off-by: Klaus Goger <klaus.goger@theobroma-systems.com>
22 lines
558 B
Makefile
22 lines
558 B
Makefile
## Copyright (C) 2017 Trevor Woerner <twoerner@gmail.com>
|
|
|
|
SUBDIRS =
|
|
DIST_SUBDIRS = cfg
|
|
|
|
AM_CPPFLAGS = -Wall -Werror -Wextra -Wreturn-type -fno-strict-aliasing -D_FILE_OFFSET_BITS=64 -D_LARGE_FILE $(LIBUSB1_CFLAGS)
|
|
|
|
bin_PROGRAMS = rkdeveloptool
|
|
rkdeveloptool_SOURCES = main.cpp \
|
|
crc.cpp DefineHeader.h Endian.h DefineHeader.h Property.hpp \
|
|
RKBoot.cpp RKBoot.h \
|
|
RKComm.cpp RKComm.h \
|
|
RKDevice.cpp RKDevice.h \
|
|
RKImage.cpp RKImage.h \
|
|
RKLog.cpp RKLog.h \
|
|
RKScan.cpp RKScan.h \
|
|
gpt.h
|
|
rkdeveloptool_LDADD = $(LIBUSB1_LIBS)
|
|
|
|
clean-local::
|
|
rm -fr log
|