Changeset 61257f4 in mainline for uspace/drv/usbhid/Makefile


Ignore:
Timestamp:
2011-04-07T20:19:24Z (14 years ago)
Author:
Lubos Slovak <lubos.slovak@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f8e8738
Parents:
fd9ba204
Message:

Initial implementation of general HID driver.

  • Should handle:
    • keyboard (most of functions from usbkbd driver), more-or-less works
    • mouse (not implemented yet)
    • generic HID device (just dummy polling callback now)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/usbhid/Makefile

    rfd9ba204 r61257f4  
    3232BINARY = usbhid
    3333
     34STOLEN_LAYOUT_SOURCES = \
     35        kbd/layout/us_qwerty.c \
     36        kbd/layout/us_dvorak.c \
     37        kbd/layout/cz.c
     38
    3439SOURCES = \
    3540        main.c \
    36         usbhid.c
     41        usbhid.c \
     42        kbd/conv.c \
     43        kbd/kbddev.c \
     44        kbd/kbdrepeat.c \
     45        generic/hidd.c \
     46        $(STOLEN_LAYOUT_SOURCES)
     47
     48EXTRA_CLEAN = $(STOLEN_LAYOUT_SOURCES)
     49
     50SRV_KBD = $(USPACE_PREFIX)/srv/hid/kbd
    3751
    3852include $(USPACE_PREFIX)/Makefile.common
    3953
     54kbd/layout/%.c: $(SRV_KBD)/layout/%.c
     55        ln -sfn ../../$< $@
Note: See TracChangeset for help on using the changeset viewer.