From fcc033df2044f30360379142a8afb27e15cfc73f Mon Sep 17 00:00:00 2001 From: ceriel Date: Tue, 14 Feb 1989 18:03:13 +0000 Subject: [PATCH] Initial revision --- mach/i386/libfp/.distr | 2 ++ mach/i386/libfp/Makefile | 22 ++++++++++++++++++++++ mach/i386/libfp/byte_order.h | 3 +++ 3 files changed, 27 insertions(+) create mode 100644 mach/i386/libfp/.distr create mode 100644 mach/i386/libfp/Makefile create mode 100644 mach/i386/libfp/byte_order.h diff --git a/mach/i386/libfp/.distr b/mach/i386/libfp/.distr new file mode 100644 index 000000000..deec15c04 --- /dev/null +++ b/mach/i386/libfp/.distr @@ -0,0 +1,2 @@ +Makefile +byte_order.h diff --git a/mach/i386/libfp/Makefile b/mach/i386/libfp/Makefile new file mode 100644 index 000000000..98549b0fe --- /dev/null +++ b/mach/i386/libfp/Makefile @@ -0,0 +1,22 @@ +EMHOME=../../.. +SUF=o +MAKEFILE=$(EMHOME)/mach/proto/fp/Makefile +MACHDEF="MACH=i386" "CFLAGS=-DIEEEFORMAT" "SUF=$(SUF)" "ASAR=aal" + +all: + make -f $(MAKEFILE) $(MACHDEF) all + +install: + make -f $(MAKEFILE) $(MACHDEF) install + +cmp: all + -../../compare FP_$(MACH).a tail_fp + +clean: + make -f $(MAKEFILE) $(MACHDEF) clean + +opr: + make pr | opr + +pr: + @pr Makefile diff --git a/mach/i386/libfp/byte_order.h b/mach/i386/libfp/byte_order.h new file mode 100644 index 000000000..b11f59990 --- /dev/null +++ b/mach/i386/libfp/byte_order.h @@ -0,0 +1,3 @@ +#define BYTES_REVERSED 0 +#define WORDS_REVERSED 1 +#define CHAR_UNSIGNED 0 -- 2.34.1