~ubuntu-branches/ubuntu/maverick/icu/maverick-updates

« back to all changes in this revision

Viewing changes to source/samples/numfmt/Makefile

  • Committer: Package Import Robot
  • Author(s): Jay Berkenbilt
  • Date: 2009-09-04 11:56:06 UTC
  • mfrom: (10.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20090904115606-sqxxuizelam5tozb
Tags: 4.2.1-3
Change install-doc target to not fail if there are subdirectories of
doc/html.  This is necessary to handle the doc/html/search directory
created by doxygen 3.6.1.  (Closes: #544799)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (c) 2000-2002 IBM, Inc. and others
 
2
# sample code makefile
 
3
 
 
4
# Usage:
 
5
#  - configure, build, install ICU (make install)
 
6
#  - make sure "icu-config" (in the ICU installed bin directory) is on
 
7
#     the path
 
8
#  - do 'make' in this directory
 
9
 
 
10
#### definitions
 
11
# Name of your target
 
12
TARGET=numfmt
 
13
 
 
14
# All object files (C or C++)
 
15
OBJECTS=main.o util.o capi.o
 
16
 
 
17
#### rules
 
18
# Load in standard makefile definitions
 
19
include ../defs.mk
 
20
 
 
21
# the actual rules (this is a simple sample)
 
22
include ../rules.mk