Newer
Older
snipet / kyscript / trunk / mk / a-o.rule
Nomura Kei on 26 Aug 2022 284 bytes old svn data to git
# ==============================================================================
#  make rule (.a <- .o)
# ==============================================================================
ifeq ($(TARGET_TYPE),static-library)
$(TARGET): $(OBJS)
	$(AR)     rv $@ $^
	$(RANLIB) $@

endif