[Makefile]fix makefile error

This commit is contained in:
JianjunJiang 2021-12-02 09:17:34 +08:00
parent 1c73f1f442
commit 11dc4b4726

View File

@ -53,7 +53,7 @@ all : $(NAME)
$(NAME) : $(OBJS)
@echo [LD] Linking $@
@$(CC) $(LDFLAGS) $(LIBDIRS) -Wl $^ -o $@ $(LIBS)
@$(CC) $(LDFLAGS) $(LIBDIRS) $^ -o $@ $(LIBS)
$(SOBJS) : %.o : %.S
@echo [AS] $<