diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1997-01-07 02:33:00 +0000 |
---|---|---|
committer | <ralf@linux-mips.org> | 1997-01-07 02:33:00 +0000 |
commit | beb116954b9b7f3bb56412b2494b562f02b864b1 (patch) | |
tree | 120e997879884e1b9d93b265221b939d2ef1ade1 /arch/m68k/fpsp040/Makefile | |
parent | 908d4681a1dc3792ecafbe64265783a86c4cccb6 (diff) |
Import of Linux/MIPS 2.1.14
Diffstat (limited to 'arch/m68k/fpsp040/Makefile')
-rw-r--r-- | arch/m68k/fpsp040/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/arch/m68k/fpsp040/Makefile b/arch/m68k/fpsp040/Makefile new file mode 100644 index 000000000..b6a8c0279 --- /dev/null +++ b/arch/m68k/fpsp040/Makefile @@ -0,0 +1,31 @@ +# +# Makefile for Linux arch/m68k/fpsp040 source directory +# +# 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 definitions are now in the main makefile... + +.S.o: + $(CC) -D__ASSEMBLY__ -traditional -c -o $*.o $< +# $(AS) -o $*.o $< + +OS_TARGET := fpsp.o + +OS_OBJS := bindec.o binstr.o decbin.o do_func.o gen_except.o get_op.o \ + kernel_ex.o res_func.o round.o sacos.o sasin.o satan.o satanh.o \ + scosh.o setox.o sgetem.o sint.o slog2.o slogn.o \ + smovecr.o srem_mod.o scale.o \ + ssin.o ssinh.o stan.o stanh.o sto_res.o stwotox.o tbldo.o util.o \ + x_bsun.o x_fline.o x_operr.o x_ovfl.o x_snan.o x_store.o \ + x_unfl.o x_unimp.o x_unsupp.o bugfix.o skeleton.o + +all: $(OS_TARGET) + +include $(TOPDIR)/Rules.make + +$(OS_OBJS): fpsp.h + +$(OS_TARGET): $(OS_OBJS) fpsp.h + $(LD) -x -r -o $(OS_TARGET) $(OS_OBJS) |