Changeset 9ce911d in mainline for uspace/app/vlaunch/Makefile
- Timestamp:
- 2017-06-02T20:06:13Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f98434b8
- Parents:
- 7367c31
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/vlaunch/Makefile
r7367c31 r9ce911d 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)" $^
Note:
See TracChangeset
for help on using the changeset viewer.