[xtensa-cvscommit] linux/arch/xtensa Makefile,1.4,1.5
Brought to you by:
zankel
|
From: <jgr...@us...> - 2002-11-01 21:47:20
|
Update of /cvsroot/xtensa/linux/arch/xtensa In directory usw-pr-cvs1:/tmp/cvs-serv18805/arch/xtensa Modified Files: Makefile Log Message: Make header symlinks during config phase--"symlinks" target--rather than dep phase. Helps when building header files package for glibc. Add config symlink to MRPROPER_FILES. Don't need "configsymlinks" anymore, and prefer to stick to "arch" targets in this file. Index: Makefile =================================================================== RCS file: /cvsroot/xtensa/linux/arch/xtensa/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Makefile 25 Oct 2002 23:37:26 -0000 1.4 --- Makefile 1 Nov 2002 21:47:17 -0000 1.5 *************** *** 129,133 **** CLEAN_FILES += arch/xtensa/vmlinux.lds MRPROPER_FILES += defconfig \ ! include/asm-xtensa/platform # XTFIXME: Xtensa frame pointers can theoretically be in any register, --- 129,134 ---- CLEAN_FILES += arch/xtensa/vmlinux.lds MRPROPER_FILES += defconfig \ ! include/asm-xtensa/platform \ ! include/asm-xtensa/xtensa/config # XTFIXME: Xtensa frame pointers can theoretically be in any register, *************** *** 152,160 **** $(MAKETOOLS) archsymlinks: $(RM) include/asm-xtensa/platform (cd include/asm-xtensa; ln -sf platform-$(PLATFORM) platform) - - configsymlinks: $(RM) include/asm-xtensa/xtensa/config (cd include/asm-xtensa/xtensa; ln -sf config-$(XTENSA_CONFIG) config) --- 153,161 ---- $(MAKETOOLS) + symlinks: archsymlinks + archsymlinks: $(RM) include/asm-xtensa/platform (cd include/asm-xtensa; ln -sf platform-$(PLATFORM) platform) $(RM) include/asm-xtensa/xtensa/config (cd include/asm-xtensa/xtensa; ln -sf config-$(XTENSA_CONFIG) config) *************** *** 167,171 **** @$(MAKETOOLS) mrproper ! archdep:archsymlinks configsymlinks # @$(MAKEBOOT) fastdep @$(MAKETOOLS) fastdep --- 168,172 ---- @$(MAKETOOLS) mrproper ! archdep:archsymlinks # @$(MAKEBOOT) fastdep @$(MAKETOOLS) fastdep |