# Makefile for 680x0 Linux 68040 floating point support package
#
# Copyright 1993 by Hamish Macdonald
#
# This file is subject to the terms and conditions of the GNU General Public
# License.  See the file "README.legal" in the main directory of this archive
# for more details.

include ../MakeVars

OS_TARGET	= fpsp.o

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)

$(OS_TARGET): $(OBJS)
	$(LD) -x -r -o $(OS_TARGET) $(OBJS)

#
# Just about every file needs fpsp.h, so...
#
$(OBJS): fpsp.h

clean:
	$(RM) $(RMFLAGS) $(OBJS) $(OS_TARGET)

dep:

