Changeset 76d9eb7e in mainline for uspace/drv/usbkbd/Makefile
- Timestamp:
- 2011-01-28T20:08:12Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1c13dac
- Parents:
- 1879a7d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbkbd/Makefile
r1879a7d r76d9eb7e 31 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 STOLEN_LAYOUT_SOURCES = \ 35 layout/us_qwerty.c \ 36 layout/us_dvorak.c \ 37 layout/cz.c 34 38 35 39 SOURCES = \ … … 38 42 descdump.c \ 39 43 conv.c \ 40 us_qwerty.c \ 41 us_dvorak.c \ 42 cz.c 44 $(STOLEN_LAYOUT_SOURCES) 45 46 EXTRA_CLEAN = $(STOLEN_LAYOUT_SOURCES) 47 48 SRV_KBD = $(USPACE_PREFIX)/srv/hid/kbd 43 49 44 50 include $(USPACE_PREFIX)/Makefile.common 45 51 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 52 layout/%.c: $(SRV_KBD)/layout/%.c 53 ln -sfn ../$< $@
Note:
See TracChangeset
for help on using the changeset viewer.