2003-06-03 20:58:22 +00:00
|
|
|
# Copyright (c) 2000-2003 IBM, Inc. and others
|
2002-05-10 20:32:34 +00:00
|
|
|
# sample code makefile
|
2000-09-06 21:57:48 +00:00
|
|
|
|
|
|
|
# Usage:
|
2002-05-10 20:32:34 +00:00
|
|
|
# - configure, build, install ICU (make install)
|
|
|
|
# - make sure "icu-config" (in the ICU installed bin directory) is on
|
|
|
|
# the path
|
2000-09-06 21:57:48 +00:00
|
|
|
# - do 'make' in this directory
|
|
|
|
|
2002-05-10 20:32:34 +00:00
|
|
|
#### definitions
|
2000-09-06 21:57:48 +00:00
|
|
|
# Name of your target
|
|
|
|
TARGET=translit
|
|
|
|
|
|
|
|
# All object files (C or C++)
|
2003-05-30 20:48:47 +00:00
|
|
|
OBJECTS=main.o unaccent.o util.o
|
2000-09-06 21:57:48 +00:00
|
|
|
|
2002-05-10 20:32:34 +00:00
|
|
|
#### rules
|
|
|
|
# Load in standard makefile definitions
|
|
|
|
include ../defs.mk
|
2000-09-06 21:57:48 +00:00
|
|
|
|
2002-05-10 20:32:34 +00:00
|
|
|
# the actual rules (this is a simple sample)
|
|
|
|
include ../rules.mk
|