M7350/system/core/fastboot/Makefile.am
2024-09-09 08:52:07 +00:00

27 lines
500 B
Makefile
Executable File

bin_PROGRAMS = fastboot
# fastboot tool for linux
# =========================================================
fastboot_SOURCES := \
protocol.c \
engine.c \
bootimg.c \
fastboot.c \
usb_linux.c \
util_linux.c
AM_CFLAGS = -O2 \
-g \
-Wall \
-Wno-unused-parameter \
-D_XOPEN_SOURCE \
-D_GNU_SOURCE \
-I../include \
-I../mkbootimg \
-include ../include/arch/linux-arm/OEConfig.h
fastboot_LDFLAGS = -lpthread -all-static
fastboot_LDADD = ../libzipfile/libzipfile.a
fastboot_LDADD += -lz