Skip to content

Commit

Permalink
Merge pull request #4 from xobs/make-clean-win-fix
Browse files Browse the repository at this point in the history
Makefile: break apart steps in `make clean`
  • Loading branch information
eddiehung authored Apr 30, 2020
2 parents 5a4820a + 947d9ea commit 0ee010f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,10 @@ depend: $(DEP)

clean:
@echo "$(MSG_PREFIX)\`\` Cleaning up..."
$(VERBOSE)rm -rvf $(PROG) lib$(PROG).a $(OBJ) $(GARBAGE) $(OBJ:.o=.d)
$(VERBOSE)rm -rvf $(PROG) lib$(PROG).a
$(VERBOSE)rm -rvf $(OBJ)
$(VERBOSE)rm -rvf $(GARBAGE)
$(VERBOSE)rm -rvf $(OBJ:.o=.d)

tags:
etags `find . -type f -regex '.*\.\(c\|h\)'`
Expand Down

0 comments on commit 0ee010f

Please sign in to comment.