Changeset 9ce911d in mainline for uspace/app/barber/Makefile
- Timestamp:
- 2017-06-02T20:06:13Z (8 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/barber/Makefile
r7367c31 r9ce911d 44 44 MATH = y 45 45 46 IMG = image 47 IMGS = $(IMG)s 48 46 49 SOURCES = \ 47 50 barber.c \ 48 images.s 51 $(IMGS).s \ 52 $(IMGS)_desc.c 49 53 50 54 IMAGES = \ … … 80 84 gfx/frame30.tga.gz 81 85 82 PRE_DEPEND = images.s images.h83 EXTRA_CLEAN = images.s images.h86 PRE_DEPEND = $(IMGS).s $(IMGS).h $(IMGS)_desc.c 87 EXTRA_CLEAN = $(IMGS).s $(IMGS).h $(IMGS)_desc.c $(IMGS).zip 84 88 85 89 include $(USPACE_PREFIX)/Makefile.common 86 90 87 images.s images.h: $(IMAGES) 88 $(ROOT_PATH)/tools/mkarray.py images COMPOSITOR_IMAGES "$(AS_PROLOG)" $^ 91 $(IMGS).s: $(IMGS).zip 92 unzip -p $< $@ > $@ 93 94 $(IMGS).h: $(IMGS).zip 95 unzip -p $< $@ > $@ 96 97 $(IMGS)_desc.c: $(IMGS).zip 98 unzip -p $< $@ > $@ 99 100 $(IMGS).zip: $(IMAGES) 101 $(ROOT_PATH)/tools/mkarray.py $(IMGS) $(IMG) "$(AS_PROLOG)" $^
Note:
See TracChangeset
for help on using the changeset viewer.