]>
Commit | Line | Data |
---|---|---|
73c04bcf A |
1 | # Copyright (c) 2003-2005 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 | # Name of your target | |
11 | TARGET=citer | |
12 | ||
13 | # All object files (C or C++) | |
14 | OBJECTS=citer.o | |
15 | ||
16 | # Load in standard makefile definitions | |
17 | include ../defs.mk | |
18 | ||
19 | LDFLAGS += $(LDFLAGS_USTDIO) | |
20 | ||
21 | # the actual rules (this is a simple sample) | |
22 | include ../rules.mk |