scuffed-code/tools/unicode/c/genregexcasing/Makefile

13 lines
623 B
Makefile
Raw Normal View History

# Copyright (C) 2014, International Business Machines
# Corporation and others. All Rights Reserved.
# Edit the following two lines to reflect the location of your ICU sources & build (if out-of-source)
ICU_HOME=$(HOME)/icu/icu/trunk/source
ICU_BUILD=$(ICU_HOME)
data: genregexcasing
LD_LIBRARY_PATH=$(ICU_BUILD)/lib:$(ICU_BUILD)/stubdata ICU_DATA=$(ICU_BUILD)/data/out ./genregexcasing
genregexcasing: genregexcasing.cpp
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