summaryrefslogtreecommitdiffstats
path: root/arch/sparc64/math-emu/Makefile
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1998-03-17 22:05:47 +0000
committerRalf Baechle <ralf@linux-mips.org>1998-03-17 22:05:47 +0000
commit27cfca1ec98e91261b1a5355d10a8996464b63af (patch)
tree8e895a53e372fa682b4c0a585b9377d67ed70d0e /arch/sparc64/math-emu/Makefile
parent6a76fb7214c477ccf6582bd79c5b4ccc4f9c41b1 (diff)
Look Ma' what I found on my harddisk ...
o New faster syscalls for 2.1.x, too o Upgrade to 2.1.89. Don't try to run this. It's flaky as hell. But feel free to debug ...
Diffstat (limited to 'arch/sparc64/math-emu/Makefile')
-rw-r--r--arch/sparc64/math-emu/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/arch/sparc64/math-emu/Makefile b/arch/sparc64/math-emu/Makefile
new file mode 100644
index 000000000..ea816d98e
--- /dev/null
+++ b/arch/sparc64/math-emu/Makefile
@@ -0,0 +1,33 @@
+#
+# Makefile for the FPU Quad (long double) instruction emulation.
+#
+# Note! Dependencies are done automagically by 'make dep', which also
+# removes any old dependencies. DON'T put your own dependencies here
+# unless it's something special (ie not a .c file).
+#
+# Note 2! The CFLAGS definition is now in the main makefile...
+
+O_TARGET := math-emu.o
+O_OBJS := math.o fabsq.o faddq.o fdivq.o fdmulq.o fitoq.o \
+ fmovq.o fmulq.o fnegq.o fqtoi.o fqtox.o fsubq.o \
+ fxtoq.o fdtoq.o fstoq.o fqtos.o fqtod.o fsqrtq.o \
+ fcmpq.o fcmpeq.o udivmodti4.o \
+ fsqrts.o fsqrtd.o fadds.o faddd.o fsubs.o fsubd.o \
+ fmuls.o fmuld.o fdivs.o fdivd.o fsmuld.o \
+ fstoi.o fdtoi.o fstox.o fdtox.o fstod.o fdtos.o
+
+ifeq ($(CONFIG_MATHEMU),m)
+M_OBJS := $(O_TARGET)
+endif
+
+.S.s:
+ $(CPP) -D__ASSEMBLY__ -ansi $< -o $*.s
+
+.S.o:
+ $(CC) -D__ASSEMBLY__ -ansi -c $< -o $*.o
+
+ifneq ($(CONFIG_MATHEMU),y)
+do_it_all:
+endif
+
+include $(TOPDIR)/Rules.make