diff options
author | Joey Hess <joey@kitenet.net> | 2013-09-11 13:28:08 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-09-11 13:28:08 -0400 |
commit | 138176a46fa237fe31e42220e622b401b76da6c2 (patch) | |
tree | 12d360f41ca49fce2a59149d3c678693ea6273d5 /Makefile | |
parent | ad113210cb861f0831d38a807cab181f3ee1e838 (diff) |
fix .o cleaning
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 $@ |