Update of /cvsroot/linux-mips/linux/arch/mips/dec/prom
In directory usw-pr-cvs1:/tmp/cvs-serv7520/dec/prom
Added Files:
Makefile
Log Message:
Cleanup Makefile crap and add support for Sibyte SB1250 / SWARM.
--- NEW FILE: Makefile ---
#
# Makefile for the DECstation prom monitor library routines
# under Linux.
#
# 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.s:
$(CPP) $(CFLAGS) $< -o $*.s
.S.o:
$(CC) $(CFLAGS) -c $< -o $*.o
L_TARGET = rexlib.a
obj-y += init.o memory.o cmdline.o identify.o locore.o
include $(TOPDIR)/Rules.make
|