From 8ec14c131d3a8bf010d98baac9c87787d29c1a1b Mon Sep 17 00:00:00 2001 From: z3APA3A <3APA3A@3proxy.ru> Date: Sun, 29 Nov 2020 14:00:19 +0300 Subject: [PATCH] Do not fail on clean --- Makefile.FreeBSD | 2 +- Makefile.Linux | 2 +- Makefile.Solaris | 2 +- Makefile.Solaris-gcc | 2 +- Makefile.openwrt-mips | 2 +- Makefile.unix | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile.FreeBSD b/Makefile.FreeBSD index fdff186..78be857 100644 --- a/Makefile.FreeBSD +++ b/Makefile.FreeBSD @@ -28,7 +28,7 @@ OBJSUFFICS = .o DEFINEOPTION = -D COMPFILES = *~ REMOVECOMMAND = rm -f -AFTERCLEAN = find src/ -type f -name "*.o" -delete && find src/ -type f -name "Makefile.var" -delete && find bin/ -type f -executable -delete +AFTERCLEAN = (find . -type f -name "*.o" -delete && find src/ -type f -name "Makefile.var" -delete && find bin/ -type f -executable -delete) || true TYPECOMMAND = cat COMPATLIBS = MAKEFILE = Makefile.FreeBSD diff --git a/Makefile.Linux b/Makefile.Linux index ff763da..4f3f2b3 100644 --- a/Makefile.Linux +++ b/Makefile.Linux @@ -26,7 +26,7 @@ OBJSUFFICS = .o DEFINEOPTION = -D COMPFILES = *~ REMOVECOMMAND = rm -f -AFTERCLEAN = find src/ -type f -name "*.o" -delete && find src/ -type f -name "Makefile.var" -delete && find bin/ -type f -executable -delete +AFTERCLEAN = (find . -type f -name "*.o" -delete && find src/ -type f -name "Makefile.var" -delete && find bin/ -type f -executable -delete) || true TYPECOMMAND = cat COMPATLIBS = MAKEFILE = Makefile.Linux diff --git a/Makefile.Solaris b/Makefile.Solaris index c263590..e1d9212 100644 --- a/Makefile.Solaris +++ b/Makefile.Solaris @@ -25,7 +25,7 @@ OBJSUFFICS = .o DEFINEOPTION = -D COMPFILES = *~ REMOVECOMMAND = rm -f -AFTERCLEAN = find src/ -type f -name "*.o" -delete && find src/ -type f -name "Makefile.var" -delete && find bin/ -type f -executable -delete +AFTERCLEAN = (find . -type f -name "*.o" -delete && find src/ -type f -name "Makefile.var" -delete && find bin/ -type f -executable -delete) || true TYPECOMMAND = cat COMPATLIBS = MAKEFILE = Makefile.Solaris diff --git a/Makefile.Solaris-gcc b/Makefile.Solaris-gcc index 9696c61..890ab1b 100644 --- a/Makefile.Solaris-gcc +++ b/Makefile.Solaris-gcc @@ -26,7 +26,7 @@ OBJSUFFICS = .o DEFINEOPTION = -D COMPFILES = *~ REMOVECOMMAND = rm -f -AFTERCLEAN = find src/ -type f -name "*.o" -delete && find src/ -type f -name "Makefile.var" -delete && find bin/ -type f -executable -delete +AFTERCLEAN = (find . -type f -name "*.o" -delete && find src/ -type f -name "Makefile.var" -delete && find bin/ -type f -executable -delete) || true TYPECOMMAND = cat COMPATLIBS = MAKEFILE = Makefile.Solaris-gcc diff --git a/Makefile.openwrt-mips b/Makefile.openwrt-mips index 6ed587a..33856f1 100644 --- a/Makefile.openwrt-mips +++ b/Makefile.openwrt-mips @@ -26,7 +26,7 @@ OBJSUFFICS = .o DEFINEOPTION = -D COMPFILES = *~ REMOVECOMMAND = rm -f -AFTERCLEAN = find src/ -type f -name "*.o" -delete && find src/ -type f -name "Makefile.var" -delete && find bin/ -type f -executable -delete +AFTERCLEAN = (find . -type f -name "*.o" -delete && find src/ -type f -name "Makefile.var" -delete && find bin/ -type f -executable -delete) || true TYPECOMMAND = cat COMPATLIBS = MAKEFILE = Makefile.openwrt-mips diff --git a/Makefile.unix b/Makefile.unix index 4985972..7bf21de 100644 --- a/Makefile.unix +++ b/Makefile.unix @@ -29,7 +29,7 @@ OBJSUFFICS = .o DEFINEOPTION = -D COMPFILES = *~ REMOVECOMMAND = rm -f -AFTERCLEAN = find src/ -type f -name "*.o" -delete && find src/ -type f -name "Makefile.var" -delete && find bin/ -type f -executable -delete +AFTERCLEAN = (find . -type f -name "*.o" -delete && find src/ -type f -name "Makefile.var" -delete && find bin/ -type f -executable -delete) || true TYPECOMMAND = cat COMPATLIBS = MAKEFILE = Makefile.unix