Import 2.3.4pre3
[davej-history.git] / arch / sparc64 / prom / Makefile
blob1cec2111e18df214589965550abffe9c70ab8b47
1 # $Id: Makefile,v 1.2 1997/02/25 12:40:25 jj Exp $
2 # Makefile for the Sun Boot PROM interface library under
3 # 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 OBJS = bootstr.o devops.o init.o memory.o misc.o \
12 ranges.o tree.o console.o printf.o p1275.o
14 all: promlib.a
16 promlib.a: $(OBJS)
17 $(AR) rcs promlib.a $(OBJS)
18 sync
20 dep:
21 $(CPP) -M *.c > .depend
23 include $(TOPDIR)/Rules.make