diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2001-05-04 19:51:18 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2001-05-04 19:51:18 +0000 |
commit | af142756744156e7ffd1e7ac64efb8a895096aec (patch) | |
tree | d817f283313243ad7574c1933573466cfb5c9956 /arch/mips/au1000/pb1000/Makefile | |
parent | a9a931336a3c21c6a0e830c25c1372280e80cc6b (diff) |
Alchemy support. Done by Pete and further hacked up a bit by me ...
Diffstat (limited to 'arch/mips/au1000/pb1000/Makefile')
-rw-r--r-- | arch/mips/au1000/pb1000/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/arch/mips/au1000/pb1000/Makefile b/arch/mips/au1000/pb1000/Makefile new file mode 100644 index 000000000..c6d318793 --- /dev/null +++ b/arch/mips/au1000/pb1000/Makefile @@ -0,0 +1,24 @@ +# +# Copyright 2000 MontaVista Software Inc. +# Author: MontaVista Software, Inc. +# ppopov@mvista.com or support@mvista.com +# +# Makefile for the Alchemy Semiconductor PB1000 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: pb1000.o + +O_TARGET := pb1000.o + +obj-y := init.o setup.o + +include $(TOPDIR)/Rules.make |