Mail Archives: djgpp-workers/2003/08/29/17:55:30
Hello.
ams AT ludd DOT luth DOT se wrote:
>
> Here's what I'm going to commit soon. Comments?
Looks good to me, but:
[snip]
> Index: djgpp/src/libc/c99/math/makefile
> ===================================================================
> RCS file: /cvs/djgpp/djgpp/src/libc/c99/math/makefile,v
> retrieving revision 1.2
> diff -p -u -r1.2 makefile
> --- djgpp/src/libc/c99/math/makefile 22 Mar 2003 11:59:57 -0000 1.2
> +++ djgpp/src/libc/c99/math/makefile 29 Aug 2003 16:43:29 -0000
> @@ -4,5 +4,20 @@ TOP=../..
> SRC += hugevalf.c
> SRC += hugevall.c
> SRC += nan.c
> +SRC += fpclassf.S
> +SRC += fpclassd.S
> +SRC += fpclassl.S
>
> include $(TOP)/../makefile.inc
> +
> +fpclassf.S: fp-asm.h
> +
> +fpclassd.S: fp-asm.h
> +
> +fpclassl.S: fp-asm.h
> +
> +fp-asm.h: fp-asm.sed $(TOP)/../../include/math.h
> + sed -n -f fp-asm.sed $(TOP)/../../include/math.h > fp-asm.h
> +
> +clean::
> + $(MISC) rm -f fp-asm.h
[snip]
misc.exe's rm doesn't have a -f option. It will remove a file called "-f". You
probably don't mean to do that.
bash-2.04$ touch -- -f blah
bash-2.04$ ls -l -- -f blah
-rw-r--r-- 1 rich root 0 Aug 29 23:02 -f
-rw-r--r-- 1 rich root 0 Aug 29 23:02 blah
bash-2.04$ ./misc.exe rm -f blah
bash-2.04$ ls -l -- -f blah
ls: -f: No such file or directory (ENOENT)
ls: blah: No such file or directory (ENOENT)
Thanks, bye, Rich =]
--
Richard Dawe [ http://www.phekda.freeserve.co.uk/richdawe/ ]
- Raw text -