15 lines
410 B
Makefile
15 lines
410 B
Makefile
SHELL=/usr/bin/env bash
|
|
|
|
LIBTAR_DIR=libtar
|
|
|
|
build_core_lib: core_lib_setup build_libtar
|
|
|
|
core_lib_setup:
|
|
@echo -e "Building core libs"
|
|
|
|
build_libtar:
|
|
@echo -e "--Building libtar (1/1)"
|
|
$(Q)cd $(CORE_DIR)/$(CORE_LIB_DIR)/$(LIBTAR_DIR) && autoreconf --force --install
|
|
$(Q)cd $(CORE_DIR)/$(CORE_LIB_DIR)/$(LIBTAR_DIR) && ./configure
|
|
$(Q)make --no-print-directory -C $(CORE_DIR)/$(CORE_LIB_DIR)/$(LIBTAR_DIR)
|