scuffed-code/icu4c/source/samples/defs.mk
Steven R. Loomis ccb2387287 ICU-2076 2.2 samples
X-SVN-Rev: 9608
2002-08-07 22:50:05 +00:00

28 lines
1.0 KiB
Makefile

# Copyright (c) 2002 IBM, Inc. and others
# Sample code makefile definitions
CLEANFILES=*~ $(TARGET).out
####################################################################
# Load ICU information. You can copy this to other makefiles #######
####################################################################
CC=$(shell icu-config --cc)
CXX=$(shell icu-config --cxx)
CPPFLAGS=$(shell icu-config --cppflags)
CFLAGS=$(shell icu-config --cflags)
CXXFLAGS=$(shell icu-config --cxxflags)
LDFLAGS =$(shell icu-config --ldflags)
LDFLAGS_USTDIO =$(shell icu-config --ldflags-ustdio)
INVOKE=$(shell icu-config --invoke)
GENRB=$(shell icu-config --invoke=genrb)
GENRBOPT=--package-name $(RESNAME)
PKGDATA=$(shell icu-config --invoke=pkgdata)
SO=$(shell icu-config --so)
PKGDATAOPTS=-v -d .
# default - resources in same mode as ICU
RESMODE=$(shell icu-config --icudata-mode)
####################################################################
### Project independent things (common)
### We depend on gmake for the bulk of the work
RMV=rm -rf