Nikita Iashchenko | 4c0e286 | 2019-11-05 16:38:00 +0000 | [diff] [blame] | 1 | # Copyright (C) 2016 and later: Unicode, Inc. and others. |
| 2 | # License & terms of use: http://www.unicode.org/copyright.html#License |
| 3 | # |
| 4 | # Copyright (c) 2003 IBM, Inc. and others |
| 5 | # sample code makefile |
| 6 | |
| 7 | # Usage: |
| 8 | # - configure, build, install ICU (make install) |
| 9 | # - make sure "icu-config" (in the ICU installed bin directory) is on |
| 10 | # the path |
| 11 | # - do 'make' in this directory |
| 12 | |
| 13 | #### definitions |
| 14 | # Name of your target |
| 15 | TARGET=case |
| 16 | |
| 17 | # All object files (C or C++) |
| 18 | OBJECTS=case.o ucase.o |
| 19 | |
| 20 | #### rules |
| 21 | # Load in standard makefile definitions |
| 22 | include ../defs.mk |
| 23 | |
| 24 | LDFLAGS += $(LDFLAGS_USTDIO) |
| 25 | |
| 26 | # the actual rules (this is a simple sample) |
| 27 | include ../rules.mk |