Changes in uspace/srv/hid/console/Makefile [7c014d1:369a5f8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/console/Makefile
r7c014d1 r369a5f8 29 29 30 30 USPACE_PREFIX = ../../.. 31 LIBS = $(LIBFB_PREFIX)/libfb.a32 EXTRA_CFLAGS += -I$(LIBFB_PREFIX)33 31 BINARY = console 34 32 35 SOURCES = \33 GENERIC_SOURCES = \ 36 34 console.c \ 37 images.c 35 keybuffer.c \ 36 gcons.c 38 37 39 38 IMAGES = \ 40 gfx/helenos.tga \ 41 gfx/nameic.tga \ 42 gfx/cons_data.tga \ 43 gfx/cons_dis.tga \ 44 gfx/cons_dis_sel.tga \ 45 gfx/cons_idle.tga \ 46 gfx/cons_sel.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 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.ppm 52 49 53 PRE_DEPEND = images.c images.h 54 EXTRA_CLEAN = images.c images.h 50 SOURCES = \ 51 $(GENERIC_SOURCES) \ 52 $(IMAGES) 55 53 56 54 include $(USPACE_PREFIX)/Makefile.common 57 55 58 images.c images.h: $(IMAGES) 59 $( ROOT_PATH)/tools/mkarray.py images CONSOLE_IMAGES $^56 %.o: %.ppm 57 $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) $< $@
Note:
See TracChangeset
for help on using the changeset viewer.