mirror of
https://github.com/3proxy/3proxy.git
synced 2025-02-23 02:25:40 +08:00
Do not fail on clean
This commit is contained in:
parent
1225dbced7
commit
8ec14c131d
@ -28,7 +28,7 @@ OBJSUFFICS = .o
|
|||||||
DEFINEOPTION = -D
|
DEFINEOPTION = -D
|
||||||
COMPFILES = *~
|
COMPFILES = *~
|
||||||
REMOVECOMMAND = rm -f
|
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
|
TYPECOMMAND = cat
|
||||||
COMPATLIBS =
|
COMPATLIBS =
|
||||||
MAKEFILE = Makefile.FreeBSD
|
MAKEFILE = Makefile.FreeBSD
|
||||||
|
@ -26,7 +26,7 @@ OBJSUFFICS = .o
|
|||||||
DEFINEOPTION = -D
|
DEFINEOPTION = -D
|
||||||
COMPFILES = *~
|
COMPFILES = *~
|
||||||
REMOVECOMMAND = rm -f
|
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
|
TYPECOMMAND = cat
|
||||||
COMPATLIBS =
|
COMPATLIBS =
|
||||||
MAKEFILE = Makefile.Linux
|
MAKEFILE = Makefile.Linux
|
||||||
|
@ -25,7 +25,7 @@ OBJSUFFICS = .o
|
|||||||
DEFINEOPTION = -D
|
DEFINEOPTION = -D
|
||||||
COMPFILES = *~
|
COMPFILES = *~
|
||||||
REMOVECOMMAND = rm -f
|
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
|
TYPECOMMAND = cat
|
||||||
COMPATLIBS =
|
COMPATLIBS =
|
||||||
MAKEFILE = Makefile.Solaris
|
MAKEFILE = Makefile.Solaris
|
||||||
|
@ -26,7 +26,7 @@ OBJSUFFICS = .o
|
|||||||
DEFINEOPTION = -D
|
DEFINEOPTION = -D
|
||||||
COMPFILES = *~
|
COMPFILES = *~
|
||||||
REMOVECOMMAND = rm -f
|
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
|
TYPECOMMAND = cat
|
||||||
COMPATLIBS =
|
COMPATLIBS =
|
||||||
MAKEFILE = Makefile.Solaris-gcc
|
MAKEFILE = Makefile.Solaris-gcc
|
||||||
|
@ -26,7 +26,7 @@ OBJSUFFICS = .o
|
|||||||
DEFINEOPTION = -D
|
DEFINEOPTION = -D
|
||||||
COMPFILES = *~
|
COMPFILES = *~
|
||||||
REMOVECOMMAND = rm -f
|
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
|
TYPECOMMAND = cat
|
||||||
COMPATLIBS =
|
COMPATLIBS =
|
||||||
MAKEFILE = Makefile.openwrt-mips
|
MAKEFILE = Makefile.openwrt-mips
|
||||||
|
@ -29,7 +29,7 @@ OBJSUFFICS = .o
|
|||||||
DEFINEOPTION = -D
|
DEFINEOPTION = -D
|
||||||
COMPFILES = *~
|
COMPFILES = *~
|
||||||
REMOVECOMMAND = rm -f
|
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
|
TYPECOMMAND = cat
|
||||||
COMPATLIBS =
|
COMPATLIBS =
|
||||||
MAKEFILE = Makefile.unix
|
MAKEFILE = Makefile.unix
|
||||||
|
Loading…
Reference in New Issue
Block a user