Displaying 4 results from an estimated 4 matches for "quiet_cmd_rmfil".
Did you mean:
quiet_cmd_rmfiles
2018 Jul 17
0
[PATCH] Never clean files in quilt status directory
...lt;ben at decadent.org.uk>
---
--- a/Makefile
+++ b/Makefile
@@ -158,7 +158,7 @@ FORCE: ;
###
# clean: remove generated files
# mrproper does a full cleaning including .config and linux symlink
-FIND_IGNORE := \( -name .git \) -prune -o
+FIND_IGNORE := \( -name .git -o -name .pc \) -prune -o
quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),RM $(wildcard $(rm-files)))
cmd_rmfiles = rm -f $(rm-files)
clean:
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 811 bytes
Desc: Digital signature
URL: <http://w...
2019 Jan 18
0
[klibc:master] Never clean files in quilt status directory
...ile
index dc10fc5..cd15149 100644
--- a/Makefile
+++ b/Makefile
@@ -158,7 +158,7 @@ FORCE: ;
###
# clean: remove generated files
# mrproper does a full cleaning including .config and linux symlink
-FIND_IGNORE := \( -name .git \) -prune -o
+FIND_IGNORE := \( -name .git -o -name .pc \) -prune -o
quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),RM $(wildcard $(rm-files)))
cmd_rmfiles = rm -f $(rm-files)
clean:
2005 Dec 28
0
kbuild: clean a bit better
...:= -nostdlib -nostdinc -isystem $(shell $(CC) -print-file-name=include)
@@ -89,8 +90,29 @@ klibc:
test: klibc
$(Q)$(MAKE) $(klibc)=klibc/tests
+###
+# clean: remove generated files
+# mrproper does a full cleaning including .config and linux symlink
+FIND_IGNORE := \( -name .git \) -prune -o
+quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),RM $(wildcard $(rm-files)))
+ cmd_rmfiles = rm -f $(rm-files)
clean:
$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.clean obj=.
+ $(Q)find . $(FIND_IGNORE) \
+ \( -name *.o -o -name *.a -o -name '.*.cmd' -o \
+ -name '.*.d' -o -name '...
2016 Apr 13
0
[PATCH 1/1] x32 support
...uild klcc - it is the first target
-klcc: $(objtree)/.config
+klcc: $(objtree)/.config srctree
$(Q)$(MAKE) $(klibc)=klcc
-klibc: $(objtree)/.config
+klibc: $(objtree)/.config srctree
$(Q)$(MAKE) $(klibc)=.
test: klibc
@@ -161,12 +166,14 @@ FORCE: ;
FIND_IGNORE := \( -name .git \) -prune -o
quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),RM $(wildcard
$(rm-files)))
cmd_rmfiles = rm -f $(rm-files)
-clean:
+clean: srctree
$(Q)$(MAKE) -f $(srctree)/scripts/Makefile.clean obj=.
$(Q)find . $(FIND_IGNORE) \
\( -name *.o -o -name *.a -o -name '.*.cmd' -o \
-name '.*.d'...