Changeset 67b05ff in mainline for uspace/srv/hid/console/Makefile
- Timestamp:
- 2011-08-10T18:34:23Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c6f08726
- Parents:
- 62e29ae
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/console/Makefile
r62e29ae r67b05ff 29 29 30 30 USPACE_PREFIX = ../../.. 31 LIBS = $(LIBIMGMAP_PREFIX)/libimgmap.a 32 EXTRA_CFLAGS += -I$(LIBIMGMAP_PREFIX) 31 33 BINARY = console 32 34 … … 34 36 console.c \ 35 37 keybuffer.c \ 38 images.c \ 36 39 gcons.c 37 40 38 IMAGES = \ 39 gfx/helenos.ppm \ 40 gfx/nameic.ppm \ 41 IMAGES_OLD = \ 41 42 gfx/cons_selected.ppm \ 42 43 gfx/cons_idle.ppm \ … … 48 49 gfx/anim_4.ppm 49 50 51 IMAGES = \ 52 gfx/helenos.tga \ 53 gfx/nameic.tga 54 50 55 SOURCES = \ 51 56 $(GENERIC_SOURCES) \ 52 $(IMAGES) 57 $(IMAGES_OLD) 58 59 PRE_DEPEND = images.c images.h 60 EXTRA_CLEAN = images.c images.h 53 61 54 62 include $(USPACE_PREFIX)/Makefile.common … … 56 64 %.o: %.ppm 57 65 $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) $< $@ 66 67 images.c images.h: $(IMAGES) 68 $(ROOT_PATH)/tools/mkarray.py images CONSOLE_IMAGES $^
Note:
See TracChangeset
for help on using the changeset viewer.