Changeset 2628642 in mainline for uspace/app/vlaunch/Makefile


Ignore:
Timestamp:
2017-05-18T18:04:13Z (7 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b06414f
Parents:
3ec2acc
Message:

generate inlined binary data via assembler
this is much faster and more flexible than via the C compiler

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/vlaunch/Makefile

    r3ec2acc r2628642  
    4545SOURCES = \
    4646        vlaunch.c \
    47         images.c
     47        images.s
    4848
    4949IMAGES = \
    5050        gfx/helenos.tga
    5151
    52 PRE_DEPEND = images.c images.h
    53 EXTRA_CLEAN = images.c images.h
     52PRE_DEPEND = images.s images.h
     53EXTRA_CLEAN = images.s images.h
    5454
    5555include $(USPACE_PREFIX)/Makefile.common
    5656
    57 images.c images.h: $(IMAGES)
    58         $(ROOT_PATH)/tools/mkarray.py images COMPOSITOR_IMAGES $^
     57images.s images.h: $(IMAGES)
     58        $(ROOT_PATH)/tools/mkarray.py images COMPOSITOR_IMAGES "$(AS_PROLOG)" $^
Note: See TracChangeset for help on using the changeset viewer.