Files
OpenCellular/scripts/newbitmaps/default_source/Makefile
Hung-Te Lin b57b8c3dea newbitmaps: Add ToNorm confirm screen resource.
According to new flow, we need "confirm" screens for TONORM.
Also simplified default_source folder, with better hints and using PNG image
source.  image/assets/* are files from issue page.

BUG=chrome-os-partner:11078
TEST=make  # x86 and arm bitmaps both works.

Change-Id: I3701d6ed5a944305e12a01c1841a197d3e18a8cd
Reviewed-on: https://gerrit.chromium.org/gerrit/29983
Reviewed-by: Bill Richardson <wfrichar@chromium.org>
Commit-Ready: Hung-Te Lin <hungte@chromium.org>
Tested-by: Hung-Te Lin <hungte@chromium.org>
2012-08-13 17:25:13 -07:00

18 lines
404 B
Makefile

# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
OUTPUT=bmpblock.bin
all:
for X in *.png; do \
python -c "import Image; \
Image.open('$$X').convert('P').save('$${X/png/bmp}')"; \
done
bmpblk_utility -c config.yaml $(OUTPUT)
clean:
rm -rf $(OUTPUT) *.bmp
.PHONY: all clean