20 lines
334 B
Plaintext
20 lines
334 B
Plaintext
# set custom targets
|
|
|
|
# set toolchain home
|
|
ifeq ($(strip $(MaPU_TC_HOME)),)
|
|
MaPU_TC_HOME := /home/ide/IDE/MaPUIDE/toolchain
|
|
endif
|
|
|
|
APP: all
|
|
|
|
LIB: libtest_sync.a
|
|
|
|
libtest_sync.a: $(OBJS)
|
|
@echo 'Building target: $@'
|
|
@echo 'Invoking: GNU archiver'
|
|
ar rcs $@ $(OBJS)
|
|
@echo 'Finished building target: $@'
|
|
@echo ' '
|
|
|
|
|
|
.PHONY: LIB APP |