1ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru# Copyright (c) 2003 IBM, Inc. and others
2ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru# sample code makefile
3ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
4ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru# Usage:
5ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru#  - configure, build, install ICU (make install)
6ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru#  - make sure "icu-config" (in the ICU installed bin directory) is on
7ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru#     the path
8ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru#  - do 'make' in this directory
9ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
10ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru#### definitions
11ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru# Name of your target
12ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste QueruTARGET=case
13ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
14ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru# All object files (C or C++)
15ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste QueruOBJECTS=case.o ucase.o
16ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
17ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru#### rules
18ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru# Load in standard makefile definitions
19ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queruinclude ../defs.mk
20ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
21ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste QueruLDFLAGS += $(LDFLAGS_USTDIO)
22ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
23ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru# the actual rules (this is a simple sample)
24ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queruinclude ../rules.mk
25