Ok. I didn't make 2.4.0 in 2000. Tough. I tried, but we had some
[davej-history.git] / arch / mips / dec / prom / Makefile
blobc139bbda302db91e88567d721a7379ed8897d08a
1 # $Id: Makefile,v 1.1 1999/01/17 03:49:44 ralf Exp $
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) $(CPPFLAGS) -M *.c > .depend
29 include $(TOPDIR)/Rules.make