diff options
author | tv <tv@shackspace.de> | 2015-03-05 15:42:10 +0100 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-03-05 15:42:10 +0100 |
commit | 9ba0916f1648eb62a5d2f2434761b396e931baca (patch) | |
tree | 45f18b953cc1116cfc2962a2095e558974fa46d5 | |
parent | 3007949ca728c48a4f68bf03741f1ebe52e4f97f (diff) |
make clean: don't restrict find depth
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ all: .PHONY: clean clean: - @find -maxdepth 1 -type f \( -name \*.o -o -name \*.hi \) -exec rm -v \{\} \; + @find * -type f \( -name \*.o -o -name \*.hi \) -exec rm -v \{\} \; .PHONY: install install: |