Changeset 1879a7d in mainline for uspace/drv/usbkbd/Makefile


Ignore:
Timestamp:
2011-01-28T17:20:57Z (13 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
76d9eb7e
Parents:
ea991e84 (diff), c113056 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge development/ changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/usbkbd/Makefile

    rea991e84 r1879a7d  
    2929USPACE_PREFIX = ../..
    3030LIBS = $(LIBDRV_PREFIX)/libdrv.a $(LIBUSB_PREFIX)/libusb.a
    31 EXTRA_CFLAGS += -I$(LIBDRV_PREFIX)/include -I$(LIBUSB_PREFIX)/include
     31EXTRA_CFLAGS += -I$(LIBDRV_PREFIX)/include -I$(LIBUSB_PREFIX)/include -I.
    3232BINARY = usbkbd
     33SRV_KBD = $(USPACE_PREFIX)/srv/hid/kbd
    3334
    3435SOURCES = \
    3536        main.c \
    3637        descparser.c \
    37         descdump.c
     38        descdump.c \
     39        conv.c \
     40        us_qwerty.c \
     41        us_dvorak.c \
     42        cz.c
    3843
    3944include $(USPACE_PREFIX)/Makefile.common
     45
     46us_qwerty.c:
     47        ln -snf $(SRV_KBD)/layout/$@ $@
     48
     49us_dvorak.c:
     50        ln -snf $(SRV_KBD)/layout/$@ $@
     51
     52cz.c:
     53        ln -snf $(SRV_KBD)/layout/$@ $@
     54
     55
Note: See TracChangeset for help on using the changeset viewer.