Displaying 2 results from an estimated 2 matches for "rmfile".
Did you mean:
refile
2001 Oct 23
2
Possible bug, Rprof() and scan(pipe()) (PR#1140)
...ple-darwin1.4
arch powerpc
os darwin1.4
system powerpc, darwin1.4
status Patched
major 1
minor 3.1
year 2001
month 10
day 15
language R
>
> foo <- scan(pipe('ls -1 | head -3'),what='')
Read 3 items
> foo
[1] "README" "RMfiles.dat" "RMfiles.tmp"
> Rprof()
> foo <- scan(pipe('ls -1 | head -3'),what='')
Read 0 items
> foo
character(0)
> Rprof(NULL)
> foo <- scan(pipe('ls -1 | head -3'),what='')
Read 3 items
>
note, profiling does appear to be fun...
2005 Dec 28
0
kbuild: clean a bit better
...lib -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 '...