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) 2000-2002 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#### definitions 142e5b6d6dSopenharmony_ci# Name of your target 152e5b6d6dSopenharmony_ciTARGET=coll 162e5b6d6dSopenharmony_ci 172e5b6d6dSopenharmony_ci# All object files (C or C++) 182e5b6d6dSopenharmony_ciOBJECTS=coll.o 192e5b6d6dSopenharmony_ci 202e5b6d6dSopenharmony_ci#### rules 212e5b6d6dSopenharmony_ci# Load in standard makefile definitions 222e5b6d6dSopenharmony_ciinclude ../defs.mk 232e5b6d6dSopenharmony_ci 242e5b6d6dSopenharmony_ci# the actual rules (this is a simple sample) 252e5b6d6dSopenharmony_ciinclude ../rules.mk 26