mirror of
https://github.com/rockchip-linux/rkdeveloptool.git
synced 2024-11-23 10:03:53 +08:00
c30d921c26
- add gpt command to write gpt table - add ul command, need run db first Signed-off-by: Liu Yi <liuyi@rock-chips.com> Signed-off-by: Kever Yang <kever.yang@rock-chips.com> Tested-by: Kever Yang <kever.yang@rock-chips.com>
22 lines
561 B
Makefile
22 lines
561 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
|