You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
603 B

7 years ago
# makefile to build static libraries
static: cortex-strings
7 years ago
cortex-strings: $(STATICLIB)/libcortex-strings.la
$(STATICLIB)/libcortex-strings.la: $(ARCHIVE)/cortex-strings-$(CORTEX-STRINGS_VER).tar.bz2 | $(TARGETPREFIX)
$(UNTAR)/cortex-strings-$(CORTEX-STRINGS_VER).tar.bz2
pushd $(BUILD_TMP)/cortex-strings-$(CORTEX-STRINGS_VER) && \
$(CONFIGURE_NON_CORTEX) \
--prefix= \
--disable-shared \
--enable-static \
--without-neon && \
$(MAKE) && \
$(MAKE) install DESTDIR=$(STATIC_DIR) && \
$(REWRITE_LIBTOOL_STATIC)/libcortex-strings.la
$(REMOVE)/cortex-strings-$(CORTEX-STRINGS_VER)