summaryrefslogtreecommitdiffstats
path: root/lib/unwarminder/unwarminder.make
blob: 563c5cadabf3114ef670b0a3f85e71cefd2a49b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#             __________               __   ___.
#   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
#   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
#   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
#   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
#                     \/            \/     \/    \/            \/
#

UNWARMLIB_DIR = $(ROOTDIR)/lib/unwarminder
UNWARMLIB_SRC = $(call preprocess, $(UNWARMLIB_DIR)/SOURCES)
UNWARMLIB_OBJ := $(call c2obj, $(UNWARMLIB_SRC))

OTHER_SRC += $(UNWARMLIB_SRC)

UNWARMLIB = $(BUILDDIR)/lib/libunwarminder.a
CORE_LIBS += $(UNWARMLIB)

INCLUDES += -I$(UNWARMLIB_DIR)
DEFINES += -DBACKTRACE_UNWARMINDER

$(UNWARMLIB): $(UNWARMLIB_OBJ)
	$(SILENT)$(shell rm -f $@)
	$(call PRINTS,AR $(@F))$(AR) rcs $@ $^ >/dev/null