9a19360398
This is an MIT-licensed library for reading and writing v7 format tar files. The version here is my fork, which fixes security issues in the original code (it hasn't been updated in 4 years, probably abandoned by the author). Change-Id: I86d41423dacc46e9fa0514b4fc7386a96c216e86
21 lines
799 B
Makefile
21 lines
799 B
Makefile
# __________ __ ___.
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
# \/ \/ \/ \/ \/
|
|
#
|
|
|
|
MICROTARLIB_DIR = $(ROOTDIR)/lib/microtar
|
|
MICROTARLIB_SRC = $(call preprocess, $(MICROTARLIB_DIR)/SOURCES)
|
|
MICROTARLIB_OBJ := $(call c2obj, $(MICROTARLIB_SRC))
|
|
|
|
MICROTARLIB = $(BUILDDIR)/lib/libmicrotar.a
|
|
|
|
INCLUDES += -I$(MICROTARLIB_DIR)/src
|
|
OTHER_SRC += $(MICROTARLIB_SRC)
|
|
CORE_LIBS += $(MICROTARLIB)
|
|
|
|
$(MICROTARLIB): $(MICROTARLIB_OBJ)
|
|
$(SILENT)$(shell rm -f $@)
|
|
$(call PRINTS,AR $(@F))$(AR) rcs $@ $^ >/dev/null
|