12e5b6d6dSopenharmony_ci# Copyright (C) 2016 and later: Unicode, Inc. and others.
22e5b6d6dSopenharmony_ci# License & terms of use: http://www.unicode.org/copyright.html
32e5b6d6dSopenharmony_ci#
42e5b6d6dSopenharmony_ci# Copyright (c) 2003-2005 IBM, Inc. and others
52e5b6d6dSopenharmony_ci# sample code makefile
62e5b6d6dSopenharmony_ci
72e5b6d6dSopenharmony_ci# Usage:
82e5b6d6dSopenharmony_ci#  - configure, build, install ICU (make install)
92e5b6d6dSopenharmony_ci#  - make sure "icu-config" (in the ICU installed bin directory) is on
102e5b6d6dSopenharmony_ci#     the path
112e5b6d6dSopenharmony_ci#  - do 'make' in this directory
122e5b6d6dSopenharmony_ci
132e5b6d6dSopenharmony_ci# Name of your target
142e5b6d6dSopenharmony_ciTARGET=citer
152e5b6d6dSopenharmony_ci
162e5b6d6dSopenharmony_ci# All object files (C or C++)
172e5b6d6dSopenharmony_ciOBJECTS=citer.o
182e5b6d6dSopenharmony_ci
192e5b6d6dSopenharmony_ci# Load in standard makefile definitions
202e5b6d6dSopenharmony_ciinclude ../defs.mk
212e5b6d6dSopenharmony_ci
222e5b6d6dSopenharmony_ciLDFLAGS += $(LDFLAGS_USTDIO)
232e5b6d6dSopenharmony_ci
242e5b6d6dSopenharmony_ci# the actual rules (this is a simple sample)
252e5b6d6dSopenharmony_ciinclude ../rules.mk
26