search for: find_ignor

Displaying 5 results from an estimated 5 matches for "find_ignor".

Did you mean: find_ignore
2005 Dec 28
0
kbuild: clean a bit better
...de export CC := gcc NOSTDINC_FLAGS := -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...
2018 Jul 17
0
[PATCH] Never clean files in quilt status directory
...from the clean rules for a similar reason, so do the same for .pc. Signed-off-by: Ben Hutchings <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:...
2019 Jan 18
0
[klibc:master] Never clean files in quilt status directory
...--- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile 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:
2016 Apr 13
0
[PATCH 1/1] x32 support
.../$(VERSION)/g' < $< > $@ # Build 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...
2010 Mar 02
17
[PATCH 00/16] External building, update for 2.6.33 and multiple root devices.
The following patchset implements 3 seperate series of changes. External Building ================= Patches 1 through 8 enable to use of klibc's build system while leaving the src tree pristine (and potentially read only). Specifically: - srctree=<Sources for klibc> - objtree=<Ouput directory for klibc> - KLIBCKERNELSRC=<Kernel sources> - KLIBCKERNELOBJ=<Kernel