Changeset 0175246 in mainline for uspace/srv/kbd/Makefile


Ignore:
Timestamp:
2009-04-05T16:20:02Z (16 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
482c86f
Parents:
56fa418
Message:

Primitive means of switching keyboard layout at run time. Use Ctrl+Fn, 1 = QWERTY, 2 = Dvorak, 3 = Czech. Remove compile-time option.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/kbd/Makefile

    r56fa418 r0175246  
    5050
    5151ARCH_SOURCES =
    52 GENARCH_SOURCES =
    53 
    54 ifeq ($(KBD_LAYOUT), cz)
    55         GENARCH_SOURCES += layout/cz.c
    56 endif
    57 ifeq ($(KBD_LAYOUT), us_qwerty)
    58         GENARCH_SOURCES += layout/us_qwerty.c
    59 endif
    60 ifeq ($(KBD_LAYOUT), us_dvorak)
    61         GENARCH_SOURCES += layout/us_dvorak.c
    62 endif
     52GENARCH_SOURCES = \
     53        layout/cz.c \
     54        layout/us_qwerty.c \
     55        layout/us_dvorak.c
    6356
    6457ifeq ($(UARCH), amd64)
Note: See TracChangeset for help on using the changeset viewer.