summaryrefslogtreecommitdiffstats
path: root/arch/mips/arc/Makefile
diff options
context:
space:
mode:
authorThomas Bogendoerfer <tsbogend@alpha.franken.de>1998-10-18 13:32:08 +0000
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>1998-10-18 13:32:08 +0000
commit25a83c8ea51aa41db55dc9995479851c9802a9d9 (patch)
tree771e989f138b1824adedf1d9f146fc26267cbe3c /arch/mips/arc/Makefile
parentc71fb12ee22941aa89fea27670b7d88992b253aa (diff)
moved sgi/prom and made it a little bit more generic for ARC like firmwares
Diffstat (limited to 'arch/mips/arc/Makefile')
-rw-r--r--arch/mips/arc/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/arch/mips/arc/Makefile b/arch/mips/arc/Makefile
new file mode 100644
index 000000000..110eb340b
--- /dev/null
+++ b/arch/mips/arc/Makefile
@@ -0,0 +1,23 @@
+# $Id: Makefile,v 1.1.1.1 1997/06/01 03:16:40 ralf Exp $
+# Makefile for the SGI arcs prom monitor library routines
+# under Linux.
+#
+# Note! Dependencies are done automagically by 'make dep', which also
+# removes any old dependencies. DON'T put your own dependencies here
+# unless it's something special (ie not a .c file).
+#
+# Note 2! The CFLAGS definitions are now in the main makefile...
+
+OBJS = console.o init.o printf.o memory.o tree.o env.o \
+ cmdline.o misc.o time.o file.o identify.o
+
+all: arclib.a
+
+arclib.a: $(OBJS)
+ $(AR) rcs arclib.a $(OBJS)
+ sync
+
+dep:
+ $(CPP) -M *.c > .depend
+
+include $(TOPDIR)/Rules.make