diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-02-05 06:47:02 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-02-05 06:47:02 +0000 |
commit | 99a7e12f34b3661a0d1354eef83a0eef4df5e34c (patch) | |
tree | 3560aca9ca86792f9ab7bd87861ea143a1b3c7a3 /arch/sparc64/prom/Makefile | |
parent | e73a04659c0b8cdee4dd40e58630e2cf63afb316 (diff) |
Merge with Linux 2.3.38.
Diffstat (limited to 'arch/sparc64/prom/Makefile')
-rw-r--r-- | arch/sparc64/prom/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/arch/sparc64/prom/Makefile b/arch/sparc64/prom/Makefile index 1cec2111e..42906da28 100644 --- a/arch/sparc64/prom/Makefile +++ b/arch/sparc64/prom/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 1997/02/25 12:40:25 jj Exp $ +# $Id: Makefile,v 1.5 1999/12/21 04:02:26 davem Exp $ # Makefile for the Sun Boot PROM interface library under # Linux. # @@ -9,7 +9,7 @@ # Note 2! The CFLAGS definitions are now in the main makefile... OBJS = bootstr.o devops.o init.o memory.o misc.o \ - ranges.o tree.o console.o printf.o p1275.o + tree.o console.o printf.o p1275.o map.o all: promlib.a @@ -17,7 +17,13 @@ promlib.a: $(OBJS) $(AR) rcs promlib.a $(OBJS) sync +.S.s: + $(CPP) -D__ASSEMBLY__ $(AFLAGS) -ansi $< -o $*.s + +.S.o: + $(CC) -D__ASSEMBLY__ $(AFLAGS) -ansi -c $< -o $*.o + dep: - $(CPP) -M *.c > .depend + $(CPP) $(CPPFLAGS) -M *.c > .depend include $(TOPDIR)/Rules.make |