Update of /cvsroot/linuxdc/linux-sh-dc
In directory usw-pr-cvs1:/tmp/cvs-serv9028
Modified Files:
ChangeLog.dc Makefile
Log Message:
Linux-SH 2.5.44 switchover
Index: ChangeLog.dc
===================================================================
RCS file: /cvsroot/linuxdc/linux-sh-dc/ChangeLog.dc,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -d -r1.56 -r1.57
--- ChangeLog.dc 19 Oct 2002 10:58:37 -0000 1.56
+++ ChangeLog.dc 29 Oct 2002 15:20:16 -0000 1.57
@@ -1,3 +1,21 @@
+2002-10-29 M. R. Brown <mr...@li...>
+
+ Linux-SH 2.5.44 switchover.
+
+ * Documentation/Configure.help, arch/sh/config.in,
+ arch/sh/kernel/pci-dc.c, arch/sh/kernel/setup_dc.c,
+ drivers/char/joystick/Config.in, drivers/char/joystick/Makefile,
+ drivers/char/joystick/maplecontrol.c,
+ drivers/char/joystick/purupuru.c, include/asm-sh/dc_sysasic.h: Remove.
+
+ * Makefile, arch/sh/config.in, arch/sh/mm/Makefile,
+ drivers/cdrom/gdrom.c, drivers/char/Makefile,
+ drivers/char/maple_keyb.c, drivers/char/maplemouse.c,
+ drivers/maple/Makefile, drivers/maple/maple.c,
+ drivers/mtd/maps/Config.in, drivers/video/pvr2fb.c,
+ include/linux/maple.h: Merge in changes from Linux-SH-restructure
+ 2.5.44, and break everything in the process.
+
2002-10-18 Adrian McMenamin <ad...@mc...>
* drivers/sound/aica/main.c: Parameterised
Index: Makefile
===================================================================
RCS file: /cvsroot/linuxdc/linux-sh-dc/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Makefile 1 May 2002 16:32:27 -0000 1.2
+++ Makefile 29 Oct 2002 15:20:16 -0000 1.3
@@ -1,29 +1,137 @@
VERSION = 2
-PATCHLEVEL = 4
-SUBLEVEL = 18
+PATCHLEVEL = 5
+SUBLEVEL = 44
EXTRAVERSION = -sh-dc
+# *DOCUMENTATION*
+# To see a list of typical targets execute "make help"
+# More info can be located in ./Documentation/kbuild
+# Comments in this file are targeted only to the developer, do not
[...1203 lines suppressed...]
+
+define update-if-changed
+ if [ -r $@ ] && cmp -s $@ $@.tmp; then \
+ echo ' (unchanged)'; \
+ rm -f $@.tmp; \
+ else \
+ echo ' (updated)'; \
+ mv -f $@.tmp $@; \
+ fi
+endef
+
+# $(call descend,<dir>,<target>)
+# Recursively call a sub-make in <dir> with target <target>
+
+ifeq ($(KBUILD_VERBOSE),1)
+descend = echo '$(MAKE) -f $(1)/Makefile $(2)';
+endif
+descend += $(MAKE) -f $(1)/Makefile obj=$(1) $(2)
+
+FORCE:
|