diff options
Diffstat (limited to 'board/esd/du440/Makefile')
-rw-r--r-- | board/esd/du440/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/board/esd/du440/Makefile b/board/esd/du440/Makefile index 7b7b4f7fda..06824c7ac4 100644 --- a/board/esd/du440/Makefile +++ b/board/esd/du440/Makefile @@ -32,8 +32,10 @@ SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS)) SOBJS := $(addprefix $(obj),$(SOBJS)) -$(LIB): $(OBJS) $(SOBJS) - $(call cmd_link_o_target, $(OBJS) $(SOBJS)) +all: $(LIB) $(SOBJS) + +$(LIB): $(OBJS) + $(call cmd_link_o_target, $^) clean: rm -f $(SOBJS) $(OBJS) |