diff options
author | yenatch <yenatch@gmail.com> | 2013-12-09 23:47:39 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-12-09 23:47:39 -0500 |
commit | 1953e89b86572fec2e0628ddee029833c253eca9 (patch) | |
tree | 9dc5044efa04fd16baf25c0ca0c43a68409dee61 | |
parent | 81c6bed27d4251c90ebff8475398c69e22781966 (diff) |
makefile: find -delete isnt portable
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ clean: rm -f $(ROMS) rm -f $(OBJS) rm -f globals.asm - find -iname '*.tx' -delete + @echo "removing *.tx" && rm -f $(shell find . -iname '*.tx' -printf '"%p" ') rm -f redrle |