• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#
2# Copyright (C) 2017 and later: Unicode, Inc. and others.
3# License & terms of use: http://www.unicode.org/copyright.html
4#
5#   Copyright (C) 2014, International Business Machines
6#   Corporation and others.  All Rights Reserved.
7
8# Edit the following two lines to reflect the location of your ICU sources & build (if out-of-source)
9ICU_HOME=$(HOME)/icu/icu/trunk/source
10ICU_BUILD=$(ICU_HOME)
11
12data: genregexcasing
13	LD_LIBRARY_PATH=$(ICU_BUILD)/lib:$(ICU_BUILD)/stubdata ICU_DATA=$(ICU_BUILD)/data/out ./genregexcasing
14
15genregexcasing: genregexcasing.cpp
16	clang++ genregexcasing.cpp -std=c++0x -g -I $(ICU_HOME)/common -I $(ICU_HOME)/i18n -I $(ICU_HOME)/io -L$(ICU_BUILD)/lib -L$(ICU_BUILD)/stubdata -licuuc -licui18n -licudata -o genregexcasing
17