From: Pete P. <pp...@us...> - 2002-02-16 16:55:48
|
Update of /cvsroot/linux-mips/linux/arch/mips/zboot In directory usw-pr-cvs1:/tmp/cvs-serv27309/arch/mips/zboot Modified Files: Makefile Log Message: Added zImage support for the Pb1500. Index: Makefile =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/zboot/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 10 Oct 2001 17:46:56 -0000 1.1 +++ Makefile 16 Feb 2002 16:55:45 -0000 1.2 @@ -42,13 +42,15 @@ ifdef CONFIG_MIPS_PB1000 $(MAKE) -C pb1000 endif +ifdef CONFIG_MIPS_PB1500 + $(MAKE) -C pb1500 +endif # Do the dirs clean: $(MAKE) -C common clean $(MAKE) -C images clean -ifdef CONFIG_MIPS_PB1000 $(MAKE) -C pb1000 clean -endif + $(MAKE) -C pb1500 clean include $(TOPDIR)/Rules.make |