Changeset ef90ffb3 in mainline for uspace/app/mkbd/Makefile
- Timestamp:
- 2011-05-17T19:09:07Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b2995c3
- Parents:
- 2586860 (diff), 4880210 (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 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/mkbd/Makefile
r2586860 ref90ffb3 1 1 # 2 # Copyright (c) 201 0-2011 Vojtech Horky2 # Copyright (c) 2011 Vojtech Horky 3 3 # All rights reserved. 4 4 # … … 28 28 29 29 USPACE_PREFIX = ../.. 30 BINARY = mkbd 30 31 31 32 LIBS = \ 32 $(LIBUSBHID_PREFIX)/libusbhid.a \33 33 $(LIBUSBDEV_PREFIX)/libusbdev.a \ 34 34 $(LIBUSB_PREFIX)/libusb.a \ 35 35 $(LIBDRV_PREFIX)/libdrv.a 36 EXTRA_CFLAGS += \ 37 -I. \ 36 EXTRA_CFLAGS = \ 38 37 -I$(LIBUSB_PREFIX)/include \ 39 38 -I$(LIBUSBDEV_PREFIX)/include \ 40 -I$(LIBUSBHID_PREFIX)/include \41 39 -I$(LIBDRV_PREFIX)/include 42 40 43 BINARY = usbkbd44 45 STOLEN_LAYOUT_SOURCES = \46 layout/us_qwerty.c \47 layout/us_dvorak.c \48 layout/cz.c49 50 41 SOURCES = \ 51 main.c \ 52 conv.c \ 53 kbddev.c \ 54 kbdrepeat.c \ 55 $(STOLEN_LAYOUT_SOURCES) 56 57 EXTRA_CLEAN = $(STOLEN_LAYOUT_SOURCES) 58 59 SRV_KBD = $(USPACE_PREFIX)/srv/hid/kbd 42 main.c 60 43 61 44 include $(USPACE_PREFIX)/Makefile.common 62 63 layout/%.c: $(SRV_KBD)/layout/%.c64 ln -sfn ../$< $@
Note:
See TracChangeset
for help on using the changeset viewer.