# Makefile for 680x0 Linux 68060 integer/floating point support package
#
# 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.

.c.s:
	$(CC) $(CFLAGS) -S $<
.c.o:
	$(CC) $(CFLAGS) -c $<
.s.o:
	$(AS) -o $*.o $<
.S.o:
	$(CC) -D__ASSEMBLY__ -traditional -c -o $*.o $<

OS_TARGET	= ifpsp.o

OBJS =	fskeleton.o iskeleton.o os.o

all:	$(OS_TARGET)

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

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

dep:

