Import 2.3.9pre5
[davej-history.git] / arch / mips / dec / prom / Makefile
blob33f906ece0b1568fc38fe459f2135f13d82292e4
1 # $Id: $
2 # Makefile for the DECstation prom monitor library routines
3 # under Linux.
5 # Note! Dependencies are done automagically by 'make dep', which also
6 # removes any old dependencies. DON'T put your own dependencies here
7 # unless it's something special (ie not a .c file).
9 # Note 2! The CFLAGS definitions are now in the main makefile...
11 .S.s:
12 $(CPP) $(CFLAGS) $< -o $*.s
13 .S.o:
14 $(CC) $(CFLAGS) -c $< -o $*.o
16 OBJS = init.o memory.o cmdline.o identify.o locore.o
18 all: rexlib.a
20 rexlib.a: $(OBJS)
21 $(AR) rcs rexlib.a $(OBJS)
22 sync
24 locore.o: locore.S
26 dep:
27 $(CPP) -M *.c > .depend
29 include $(TOPDIR)/Rules.make