From: Pete P. <pp...@us...> - 2002-04-12 18:10:53
|
Update of /cvsroot/linux-mips/linux/arch/mips/zboot In directory usw-pr-cvs1:/tmp/cvs-serv7014 Modified Files: Makefile Log Message: Consolidated zImage support for all three Alchemy boards (Pb1000, Pb1500, Pb1100) into one directory. Index: Makefile =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/zboot/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile 16 Feb 2002 16:55:45 -0000 1.2 +++ Makefile 12 Apr 2002 18:10:47 -0000 1.3 @@ -40,10 +40,13 @@ $(BOOT_TARGETS): lib/zlib.a images/vmlinux.gz ifdef CONFIG_MIPS_PB1000 - $(MAKE) -C pb1000 + $(MAKE) -C pb1xxx endif ifdef CONFIG_MIPS_PB1500 - $(MAKE) -C pb1500 + $(MAKE) -C pb1xxx +endif +ifdef CONFIG_MIPS_PB1100 + $(MAKE) -C pb1xxx endif # Do the dirs @@ -52,5 +55,6 @@ $(MAKE) -C images clean $(MAKE) -C pb1000 clean $(MAKE) -C pb1500 clean + $(MAKE) -C pb1100 clean include $(TOPDIR)/Rules.make |