Changeset cb9313e in mainline for uspace/srv/hid/input/Makefile


Ignore:
Timestamp:
2019-05-12T15:02:29Z (5 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
3e1bc35
Parents:
1e8b633
git-author:
Matthieu Riolo <matthieu.riolo@…> (2019-05-12 05:41:53)
git-committer:
Matthieu Riolo <matthieu.riolo@…> (2019-05-12 15:02:29)
Message:

Adding a configuration flag which allows to define which is
the default keyboard layout

This commit adds a new configuration flag which defines the
default keyboard layout. This layout will be hardcoded into
the system. Changing to this keyboard layout can be done by
pressing CTRL+F1.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/input/Makefile

    r1e8b633 rcb9313e  
    3232LIBS = drv
    3333
     34ROOT_PATH = $(USPACE_PREFIX)/..
     35CONFIG_MAKEFILE = $(ROOT_PATH)/Makefile.config
     36
     37include $(CONFIG_MAKEFILE)
     38
     39ifndef CONFIG_KB_LAYOUT
     40$(error CONFIG_KB_LAYOUT must be set! Please reconfigure your HelenOS.config)
     41endif
     42
    3443SOURCES = \
    35         layout/cz.c \
    36         layout/us_qwerty.c \
    37         layout/us_dvorak.c \
    38         layout/ar.c \
     44        layout/$(CONFIG_KB_LAYOUT).c \
    3945        port/chardev.c \
    4046        proto/mousedev.c \
     
    4753        stroke.c
    4854
     55
    4956include $(USPACE_PREFIX)/Makefile.common
     57
Note: See TracChangeset for help on using the changeset viewer.