X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=clean.mk;h=bd9f607d2f9d92ffc3b930432b85628c7c15177d;hb=fd94924a3d743c1c82f4b370d9401d7239172789;hp=0eba397eb0010f2fdca5b3b5584ae9081e889a79;hpb=5f832da0b82bc7a78f14b96f9e7892f19ac88126;p=fw%2Fsdcc diff --git a/clean.mk b/clean.mk index 0eba397e..bd9f607d 100644 --- a/clean.mk +++ b/clean.mk @@ -3,15 +3,14 @@ clean: rm -f *core *[%~] *.[oa] rm -f .[a-z]*~ - -rm -f bin/* - + cd bin && for name in *; do if [ -f $$name -a $$name != README ]; then rm $$name; fi; done # Deleting all files created by configuring or building the program # ----------------------------------------------------------------- distclean: clean - rm -f config.cache config.log config.status + rm -f config.cache config.log config.status Makefile Makefile.common rm -f sdccconf.h main.mk *.dep - + rm -f ports.all ports.build # Like clean but some files may still exist # -----------------------------------------