From: James S. <jsi...@us...> - 2003-02-01 18:57:17
|
Update of /cvsroot/linuxconsole/ruby/linux/drivers/acorn/char In directory sc8-pr-cvs1:/tmp/cvs-serv15026/linux/drivers/acorn/char Modified Files: Makefile Log Message: Synced to 2.5.59 Index: Makefile =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/acorn/char/Makefile,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- Makefile 10 Dec 2002 21:06:15 -0000 1.13 +++ Makefile 1 Feb 2003 18:57:14 -0000 1.14 @@ -2,8 +2,22 @@ # Makefile for the acorn character device drivers. # +obj-arc := keyb_arc.o defkeymap-acorn.o + obj-$(CONFIG_ARCH_ACORN) += i2c.o pcf8583.o +obj-$(CONFIG_L7200_KEYB) += defkeymap-l7200.o keyb_l7200.o obj-y += $(obj-$(MACHINE)) -include $(TOPDIR)/Rules.make +$(obj)/defkeymap-acorn.o: $(obj)/defkeymap-acorn.c + +# Uncomment if you're changing the keymap and have an appropriate +# loadkeys version for the map. By default, we'll use the shipped +# versions. +# GENERATE_KEYMAP := 1 + +ifdef GENERATE_KEYMAP +$(obj)/defkeymap-acorn.c: $(obj)/%.c: $(src)/%.map + loadkeys --mktable $< > $@ + +endif |