Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Improve make clean and make clobber
  • Loading branch information
lcn2 committed May 31, 2017
commit df7c024c77f2105b726f013859a68a4661cbe99d
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,11 @@ test: ${TEST_TARGETS}
configure:
@echo nothing to configure

clean quick_clean quick_distclean distclean:
clean quick_clean:
rm -f *.o

clobber quick_clobber: clean
clobber quick_clobber quick_distclean distclean:
rm -f *.o
rm -f ${TARGETS}

install: all
Expand Down