summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-09-11 13:28:08 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-09-11 13:28:08 -0400
commit138176a46fa237fe31e42220e622b401b76da6c2 (patch)
tree12d360f41ca49fce2a59149d3c678693ea6273d5 /Makefile
parentad113210cb861f0831d38a807cab181f3ee1e838 (diff)
fix .o cleaning
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4d3542f13..b8995b23c 100644
--- a/Makefile
+++ b/Makefile
@@ -76,7 +76,8 @@ clean:
doc/.ikiwiki html dist tags Build/SysConfig.hs build-stamp \
Setup Build/InstallDesktopFile Build/EvilSplicer \
Build/Standalone Build/OSXMkLibs
- find -name \*.o -or -name \*.hi -exec rm {} \;
+ find -name \*.o -exec rm {} \;
+ find -name \*.hi -exec rm {} \;
Build/InstallDesktopFile: Build/InstallDesktopFile.hs
$(GHC) --make $@