Changeset 3e01316f in mainline for uspace/srv/hid/console/Makefile
- Timestamp:
- 2011-08-17T18:04:50Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0cf27ee
- Parents:
- e898296d (diff), e6165be (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/srv/hid/console/Makefile
re898296d r3e01316f 29 29 30 30 USPACE_PREFIX = ../../.. 31 LIBS = $(LIBIMGMAP_PREFIX)/libimgmap.a 32 EXTRA_CFLAGS += -I$(LIBIMGMAP_PREFIX) 31 33 BINARY = console 32 34 33 GENERIC_SOURCES = \35 SOURCES = \ 34 36 console.c \ 35 37 keybuffer.c \ 38 images.c \ 36 39 gcons.c 37 40 38 41 IMAGES = \ 39 gfx/helenos. ppm\40 gfx/nameic. ppm\41 gfx/cons_selected. ppm\42 gfx/cons_idle. ppm\43 gfx/cons_has_data. ppm\44 gfx/cons_kernel. ppm\45 gfx/anim_1. ppm\46 gfx/anim_2. ppm\47 gfx/anim_3. ppm\48 gfx/anim_4. ppm42 gfx/helenos.tga \ 43 gfx/nameic.tga \ 44 gfx/cons_selected.tga \ 45 gfx/cons_idle.tga \ 46 gfx/cons_has_data.tga \ 47 gfx/cons_kernel.tga \ 48 gfx/anim_1.tga \ 49 gfx/anim_2.tga \ 50 gfx/anim_3.tga \ 51 gfx/anim_4.tga 49 52 50 SOURCES = \ 51 $(GENERIC_SOURCES) \ 52 $(IMAGES) 53 PRE_DEPEND = images.c images.h 54 EXTRA_CLEAN = images.c images.h 53 55 54 56 include $(USPACE_PREFIX)/Makefile.common 55 57 56 %.o: %.ppm 57 $( OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) $< $@58 images.c images.h: $(IMAGES) 59 $(ROOT_PATH)/tools/mkarray.py images CONSOLE_IMAGES $^
Note:
See TracChangeset
for help on using the changeset viewer.