MIPS/resources/2021/soft/func/inst/Makefile
2021-06-18 15:43:51 +08:00

15 lines
223 B
Makefile

srcs = $(wildcard *.S)
objs = $(patsubst %.S, %.o, $(srcs))
$(TOPDIR)/libinst.a: $(objs)
$(CROSS_COMPILE)$(AR) -cr $@ $?
clean:
rm -f *.o *.a *.s
#print:
# @echo $(srcs)
# @echo $(objs)
-include $(TOPDIR)/rules.make