Changes in uspace/app/vlaunch/Makefile [2628642:22299ed] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/vlaunch/Makefile
r2628642 r22299ed 43 43 MATH = y 44 44 45 IMG = image 46 IMGS = $(IMG)s 47 45 48 SOURCES = \ 46 49 vlaunch.c \ 47 images.s 50 $(IMGS).s \ 51 $(IMGS)_desc.c 48 52 49 53 IMAGES = \ 50 54 gfx/helenos.tga 51 55 52 PRE_DEPEND = images.s images.h53 EXTRA_CLEAN = images.s images.h56 PRE_DEPEND = $(IMGS).s $(IMGS).h $(IMGS)_desc.c 57 EXTRA_CLEAN = $(IMGS).s $(IMGS).h $(IMGS)_desc.c $(IMGS).zip 54 58 55 59 include $(USPACE_PREFIX)/Makefile.common 56 60 57 images.s images.h: $(IMAGES) 58 $(ROOT_PATH)/tools/mkarray.py images COMPOSITOR_IMAGES "$(AS_PROLOG)" $^ 61 $(IMGS).s: $(IMGS).zip 62 unzip -p $< $@ > $@ 63 64 $(IMGS).h: $(IMGS).zip 65 unzip -p $< $@ > $@ 66 67 $(IMGS)_desc.c: $(IMGS).zip 68 unzip -p $< $@ > $@ 69 70 $(IMGS).zip: $(IMAGES) 71 $(ROOT_PATH)/tools/mkarray.py $(IMGS) $(IMG) "$(AS_PROLOG)" .data $^
Note:
See TracChangeset
for help on using the changeset viewer.