2016-09-28 22:12:27 +00:00
|
|
|
# Copyright (C) 2016 and later: Unicode, Inc. and others.
|
|
|
|
# License & terms of use: http://www.unicode.org/copyright.html#License
|
|
|
|
#
|
2016-05-31 21:45:07 +00:00
|
|
|
# Copyright (c) 2002 IBM, Inc. and others
|
2002-05-08 23:25:29 +00:00
|
|
|
# sample code makefile
|
2000-09-10 00:49:24 +00:00
|
|
|
|
|
|
|
# Usage:
|
2002-05-08 23:25:29 +00:00
|
|
|
# - configure, build, install ICU (make install)
|
|
|
|
# - make sure "icu-config" (in the ICU installed bin directory) is on
|
|
|
|
# the path
|
2000-09-10 00:49:24 +00:00
|
|
|
# - do 'make' in this directory
|
|
|
|
|
|
|
|
# Name of your target
|
|
|
|
TARGET=ustring
|
|
|
|
|
|
|
|
# All object files (C or C++)
|
|
|
|
OBJECTS=ustring.o
|
|
|
|
|
2002-05-08 23:25:29 +00:00
|
|
|
# Load in standard makefile definitions
|
|
|
|
include ../defs.mk
|
2000-09-10 00:49:24 +00:00
|
|
|
|
2002-05-08 23:25:29 +00:00
|
|
|
# the actual rules (this is a simple sample)
|
|
|
|
include ../rules.mk
|