20 lines
353 B
Plaintext
20 lines
353 B
Plaintext
![]() |
# set custom targets
|
||
|
|
||
|
# set toolchain home
|
||
|
ifeq ($(strip $(MaPU_TC_HOME)),)
|
||
|
MaPU_TC_HOME := /public/zhoukangkang/MaPUIDE/toolchain
|
||
|
endif
|
||
|
|
||
|
APP: all
|
||
|
|
||
|
LIB: libLdpcDecBG1AllZc.a
|
||
|
|
||
|
libLdpcDecBG1AllZc.a: $(OBJS)
|
||
|
@echo 'Building target: $@'
|
||
|
@echo 'Invoking: GNU archiver'
|
||
|
ar rcs $@ $(OBJS)
|
||
|
@echo 'Finished building target: $@'
|
||
|
@echo ' '
|
||
|
|
||
|
|
||
|
.PHONY: LIB APP
|