2016-05-26 22:32:17 +00:00
|
|
|
# Copyright (C) 2016 and later: Unicode, Inc. and others.
|
|
|
|
# License & terms of use: http://www.unicode.org/copyright.html
|
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
|