mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-27 18:25:05 +00:00
BUG=chrome-os-partner:12701 TEST=Disable the 'clean' step in the Makefile and run 'make' in newbitmaps directory. Use the bitmap_viewer to verify the HWID is correctly aligned when compared with the "Model" text. Change-Id: Icd3977f50461492a0999059ccd4982d16a373dce Reviewed-on: https://gerrit.chromium.org/gerrit/30453 Reviewed-by: Hung-Te Lin <hungte@chromium.org> Commit-Ready: Dave Parker <dparker@chromium.org> Tested-by: Dave Parker <dparker@chromium.org>
28 lines
495 B
Makefile
28 lines
495 B
Makefile
# Copyright (c) 2012 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.
|
|
|
|
.SUFFIXES: .txt .TXT .png
|
|
.PHONY: clean all font localized_text
|
|
|
|
LOCALEDIR=localized_text
|
|
|
|
.TXT.png:
|
|
./text_to_png $<
|
|
|
|
.txt.png:
|
|
./text_to_png $<
|
|
|
|
all: font Url.png hwid_placeholder.png localized_text
|
|
|
|
localized_text:
|
|
make -C $(LOCALEDIR)
|
|
|
|
font:
|
|
./build_font $@
|
|
|
|
clean:
|
|
rm -f *.png
|
|
rm -rf font
|
|
make -C $(LOCALEDIR) $@
|