Changeset 3ee48f2 in mainline for uspace/drv/usbkbd/Makefile
- Timestamp:
- 2011-01-28T15:55:55Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c113056
- Parents:
- 2b96463 (diff), 11797d5 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbkbd/Makefile
r2b96463 r3ee48f2 29 29 USPACE_PREFIX = ../.. 30 30 LIBS = $(LIBDRV_PREFIX)/libdrv.a $(LIBUSB_PREFIX)/libusb.a 31 EXTRA_CFLAGS += -I$(LIBDRV_PREFIX)/include -I$(LIBUSB_PREFIX)/include 31 EXTRA_CFLAGS += -I$(LIBDRV_PREFIX)/include -I$(LIBUSB_PREFIX)/include -I. 32 32 BINARY = usbkbd 33 SRV_KBD = $(USPACE_PREFIX)/srv/hid/kbd 33 34 34 35 SOURCES = \ 35 36 main.c \ 36 37 descparser.c \ 37 descdump.c 38 descdump.c \ 39 conv.c \ 40 us_qwerty.c \ 41 us_dvorak.c \ 42 cz.c 38 43 39 44 include $(USPACE_PREFIX)/Makefile.common 45 46 us_qwerty.c: 47 ln -snf $(SRV_KBD)/layout/$@ $@ 48 49 us_dvorak.c: 50 ln -snf $(SRV_KBD)/layout/$@ $@ 51 52 cz.c: 53 ln -snf $(SRV_KBD)/layout/$@ $@ 54 55
Note:
See TracChangeset
for help on using the changeset viewer.