20 lines
349 B
Plaintext

# set custom targets
# set toolchain home
ifeq ($(strip $(MaPU_TC_HOME)),)
MaPU_TC_HOME := /public/kangle/MaPUIDE/toolchain
endif
APP: all
LIB: libaadecimation_LTE.a
libaadecimation_LTE.a: $(OBJS)
@echo 'Building target: $@'
@echo 'Invoking: GNU archiver'
ar rcs $@ $(OBJS)
@echo 'Finished building target: $@'
@echo ' '
.PHONY: LIB APP