summaryrefslogtreecommitdiff
path: root/lib/unwarminder/unwarminder.make
diff options
context:
space:
mode:
Diffstat (limited to 'lib/unwarminder/unwarminder.make')
-rw-r--r--lib/unwarminder/unwarminder.make15
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/unwarminder/unwarminder.make b/lib/unwarminder/unwarminder.make
index f570d49640..5093156f54 100644
--- a/lib/unwarminder/unwarminder.make
+++ b/lib/unwarminder/unwarminder.make
@@ -6,16 +6,17 @@
6# \/ \/ \/ \/ \/ 6# \/ \/ \/ \/ \/
7# 7#
8 8
9UNWARM_DIR = $(ROOTDIR)/lib/unwarminder 9UNWARMLIB_DIR = $(ROOTDIR)/lib/unwarminder
10UNWARM_SRC = $(call preprocess, $(UNWARM_DIR)/SOURCES) 10UNWARMLIB_SRC = $(call preprocess, $(UNWARMLIB_DIR)/SOURCES)
11UNWARM_OBJ := $(call c2obj, $(UNWARM_SRC)) 11UNWARMLIB_OBJ := $(call c2obj, $(UNWARMLIB_SRC))
12 12
13OTHER_SRC += $(UNWARM_SRC) 13OTHER_SRC += $(UNWARMLIB_SRC)
14 14
15UNWARMINDER = $(BUILDDIR)/lib/libunwarminder.a 15UNWARMLIB = $(BUILDDIR)/lib/libunwarminder.a
16CORE_LIBS += $(UNWARMLIB)
16 17
17INCLUDES += -I$(UNWARM_DIR) 18INCLUDES += -I$(UNWARMLIB_DIR)
18 19
19$(UNWARMINDER): $(UNWARM_OBJ) 20$(UNWARMLIB): $(UNWARMLIB_OBJ)
20 $(SILENT)$(shell rm -f $@) 21 $(SILENT)$(shell rm -f $@)
21 $(call PRINTS,AR $(@F))$(AR) rcs $@ $^ >/dev/null 22 $(call PRINTS,AR $(@F))$(AR) rcs $@ $^ >/dev/null