Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/barber/meson.build

    r211fd68 r5fc8244  
    6262)
    6363
    64 _images_tiny = files(
    65         'gfx-tiny/frame01t.tga.gz',
    66         'gfx-tiny/frame02t.tga.gz',
    67         'gfx-tiny/frame03t.tga.gz',
    68         'gfx-tiny/frame04t.tga.gz',
    69         'gfx-tiny/frame05t.tga.gz',
    70         'gfx-tiny/frame06t.tga.gz',
    71         'gfx-tiny/frame07t.tga.gz',
    72         'gfx-tiny/frame08t.tga.gz',
    73         'gfx-tiny/frame09t.tga.gz',
    74         'gfx-tiny/frame10t.tga.gz',
    75         'gfx-tiny/frame11t.tga.gz',
    76         'gfx-tiny/frame12t.tga.gz',
    77         'gfx-tiny/frame13t.tga.gz',
    78         'gfx-tiny/frame14t.tga.gz',
    79         'gfx-tiny/frame15t.tga.gz',
    80         'gfx-tiny/frame16t.tga.gz',
    81         'gfx-tiny/frame17t.tga.gz',
    82         'gfx-tiny/frame18t.tga.gz',
    83         'gfx-tiny/frame19t.tga.gz',
    84         'gfx-tiny/frame20t.tga.gz',
    85         'gfx-tiny/frame21t.tga.gz',
    86         'gfx-tiny/frame22t.tga.gz',
    87         'gfx-tiny/frame23t.tga.gz',
    88         'gfx-tiny/frame24t.tga.gz',
    89         'gfx-tiny/frame25t.tga.gz',
    90         'gfx-tiny/frame26t.tga.gz',
    91         'gfx-tiny/frame27t.tga.gz',
    92         'gfx-tiny/frame28t.tga.gz',
    93         'gfx-tiny/frame29t.tga.gz',
    94         'gfx-tiny/frame30t.tga.gz',
    95 )
    96 
    9764_tarball = custom_target('barber_images.tar',
    9865        input: _images,
     
    10370# TODO
    10471
    105 # Normal images
    106 
    10772_images_zip = custom_target('barber_images.zip',
    10873        input : _images,
    10974        output : [ 'images.zip' ],
    110         command : [ mkarray, '@OUTDIR@', 'images', 'image', 'image', uspace_as_prolog, '.data', '@INPUT@' ],
     75        command : [ mkarray, '@OUTDIR@', 'images', 'image', uspace_as_prolog, '.data', '@INPUT@' ],
    11176)
    11277_imgs_s = custom_target('barber_images.s',
     
    12994)
    13095
    131 # Tiny images
    132 
    133 _images_tiny_zip = custom_target('barber_images_tiny.zip',
    134         input : _images_tiny,
    135         output : [ 'images_tiny.zip' ],
    136         command : [ mkarray, '@OUTDIR@', 'images_tiny', 'image', 'image_tiny', uspace_as_prolog, '.data', '@INPUT@' ],
    137 )
    138 _imgs_tiny_s = custom_target('barber_images_tiny.s',
    139         input : _images_tiny_zip,
    140         output : [ 'images_tiny.s' ],
    141         command : [ unzip, '-p', '@INPUT@', 'images_tiny.s' ],
    142         capture : true,
    143 )
    144 _imgs_tiny_h = custom_target('barber_images_tiny.h',
    145         input : _images_tiny_zip,
    146         output : [ 'images_tiny.h' ],
    147         command : [ unzip, '-p', '@INPUT@', 'images_tiny.h' ],
    148         capture : true,
    149 )
    150 _imgs_tiny_desc_c = custom_target('barber_images_tiny_desc.c',
    151         input : _images_tiny_zip,
    152         output : [ 'images_tiny_desc.c' ],
    153         command : [ unzip, '-p', '@INPUT@', 'images_tiny_desc.c' ],
    154         capture : true,
    155 )
    156 
    157 src = [ files('barber.c'), _imgs_s, _imgs_h, _imgs_desc_c,
    158     _imgs_tiny_s, _imgs_tiny_h, _imgs_tiny_desc_c ]
     96src = [ files('barber.c'), _imgs_s, _imgs_h, _imgs_desc_c ]
Note: See TracChangeset for help on using the changeset viewer.