summaryrefslogtreecommitdiffstats
path: root/arch/sparc64/prom/Makefile
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2001-01-10 17:17:53 +0000
committerRalf Baechle <ralf@linux-mips.org>2001-01-10 17:17:53 +0000
commitb2ad5f821b1381492d792ca10b1eb7a107b48f14 (patch)
tree954a648692e7da983db1d2470953705f6a729264 /arch/sparc64/prom/Makefile
parentc9c06167e7933d93a6e396174c68abf242294abb (diff)
Merge with Linux 2.4.0-prerelease. Big Makefile rewrite, test your
Makefiles.
Diffstat (limited to 'arch/sparc64/prom/Makefile')
-rw-r--r--arch/sparc64/prom/Makefile16
1 files changed, 4 insertions, 12 deletions
diff --git a/arch/sparc64/prom/Makefile b/arch/sparc64/prom/Makefile
index 04471ab85..7387b9c24 100644
--- a/arch/sparc64/prom/Makefile
+++ b/arch/sparc64/prom/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.6 2000/03/31 04:06:25 davem Exp $
+# $Id: Makefile,v 1.7 2000/12/14 22:57:25 davem Exp $
# Makefile for the Sun Boot PROM interface library under
# Linux.
#
@@ -8,14 +8,9 @@
#
# Note 2! The CFLAGS definitions are now in the main makefile...
-OBJS = bootstr.o devops.o init.o memory.o misc.o \
- tree.o console.o printf.o p1275.o map.o
-
-all: promlib.a
-
-promlib.a: $(OBJS)
- $(AR) rcs promlib.a $(OBJS)
- sync
+L_TARGET = promlib.a
+obj-y := bootstr.o devops.o init.o memory.o misc.o \
+ tree.o console.o printf.o p1275.o map.o
.S.s:
$(CPP) $(AFLAGS) -ansi $< -o $*.s
@@ -23,7 +18,4 @@ promlib.a: $(OBJS)
.S.o:
$(CC) $(AFLAGS) -ansi -c $< -o $*.o
-dep:
- $(CPP) $(CPPFLAGS) -M *.c > .depend
-
include $(TOPDIR)/Rules.make