From d664b9fb0b8613bb91eba5c7aad94c84974820c8 Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 7 Apr 1988 12:36:30 +0000 Subject: [PATCH] Initial revision --- mach/m68k4/libfp/.distr | 2 ++ mach/m68k4/libfp/Makefile | 22 ++++++++++++++++++++++ mach/m68k4/libfp/byte_order.h | 3 +++ 3 files changed, 27 insertions(+) create mode 100644 mach/m68k4/libfp/.distr create mode 100644 mach/m68k4/libfp/Makefile create mode 100644 mach/m68k4/libfp/byte_order.h diff --git a/mach/m68k4/libfp/.distr b/mach/m68k4/libfp/.distr new file mode 100644 index 000000000..deec15c04 --- /dev/null +++ b/mach/m68k4/libfp/.distr @@ -0,0 +1,2 @@ +Makefile +byte_order.h diff --git a/mach/m68k4/libfp/Makefile b/mach/m68k4/libfp/Makefile new file mode 100644 index 000000000..0cf8beaa2 --- /dev/null +++ b/mach/m68k4/libfp/Makefile @@ -0,0 +1,22 @@ +EMHOME=../../.. +SUF=o +MAKEFILE=$(EMHOME)/mach/proto/fp/Makefile +MACHDEF="MACH=m68k4" "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/m68k4/libfp/byte_order.h b/mach/m68k4/libfp/byte_order.h new file mode 100644 index 000000000..e7c51e106 --- /dev/null +++ b/mach/m68k4/libfp/byte_order.h @@ -0,0 +1,3 @@ +#define BYTES_REVERSED 1 +#define WORDS_REVERSED 0 +#define CHAR_UNSIGNED 0 -- 2.34.1