Skip to content

Commit

Permalink
Build: clean .d files based on SUFFIXED_OBJS and EXTRA_OBJS
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs authored and awesomekling committed Feb 10, 2020
1 parent 99ea806 commit e9be866
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.common
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ EXTRA_CLEAN ?=

clean:
@echo "$(notdir $(CURDIR)): CLEAN"
$(QUIET) rm -f $(PROGRAM) $(LIBRARY) $(SUFFIXED_OBJS) $(EXTRA_OBJS) *.d $(EXTRA_CLEAN)
$(QUIET) rm -f $(PROGRAM) $(LIBRARY) $(SUFFIXED_OBJS) $(EXTRA_OBJS) $(patsubst %.o,%.d,$(SUFFIXED_OBJS) $(EXTRA_OBJS)) $(EXTRA_CLEAN)

install:

Expand Down

0 comments on commit e9be866

Please sign in to comment.