diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-11-06 22:59:55 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-11-06 22:59:55 +0000 |
commit | 2cd3e1c9bf87b60bad3bee59fe02cd3294f7aa33 (patch) | |
tree | 2439a693e39429ed870dbfc0a8124745d8bec634 /arch/mips/galileo-boards/ev96100/Makefile | |
parent | 7b2de87d1fb408559c520ade7d29e68552cfcbfd (diff) |
Partial support for Galileo EV96100 evaluation board. Patches from
Pete Popov of Monta Vista.
Diffstat (limited to 'arch/mips/galileo-boards/ev96100/Makefile')
-rw-r--r-- | arch/mips/galileo-boards/ev96100/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/arch/mips/galileo-boards/ev96100/Makefile b/arch/mips/galileo-boards/ev96100/Makefile new file mode 100644 index 000000000..90034f016 --- /dev/null +++ b/arch/mips/galileo-boards/ev96100/Makefile @@ -0,0 +1,27 @@ +# +# Copyright 2000 MontaVista Software Inc. +# Author: MontaVista Software, Inc. +# ppopov@mvista.com or support@mvista.com +# +# Makefile for the Galileo EV96100 board. +# +# 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). +# + +.S.s: + $(CPP) $(CFLAGS) $< -o $*.s +.S.o: + $(CC) $(CFLAGS) -c $< -o $*.o + +all: ev96100.o + +O_TARGET:= ev96100.o + +O_OBJS:= prom.o time.o rtc.o irq.o int-handler.o setup.o puts.o uart.o pci-dma.o memory.o + +dep: + $(CPP) -M *.c > .depend + +include $(TOPDIR)/Rules.make |