Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: icu52/source/samples/ufortune/fortunedefs.mk

Issue 245383002: Add the original mk (make) files for ICU 52 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « icu52/source/samples/rules.mk ('k') | icu52/source/test/testdata/tstfiles.mk » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 # Copyright (c) 2001-2011 IBM, Inc. and others
2 # common makefile between ufortune and ufortune/resources
3
4 # mode of resource bundle -
5 # you can change this to:
6 # dll - will create a dynamically linked library
7 # (may require 'make install' in resources subdir for
8 # proper library installation)
9 #
10 # static - will statically link data into ufortune
11 #
12 # common - will create fortune_resources.dat in the resources subdir
13 # (must be locatable by ICU_PATH - use 'make check')
14 #
15 # files - will use separate files, such as es.res, fi.res, etc.
16 # (use 'make check')
17 #
18 RESMODE=static
19
20 # Resource shortname
21 RESNAME=fortune_resources
22
23 RESLDFLAGS=
24 # Don't call udata_setAppData unless we are linked with the data
25 RESCPPFLAGS=-DUFORTUNE_NOSETAPPDATA
26 CHECK_VARS= ICU_DATA=$(RESDIR)
27
28 # DLL and static modes are identical here
29 ifeq ($(RESMODE),dll)
30 RESLDFLAGS= -L$(RESDIR) -l$(RESNAME)
31 RESCPPFLAGS=
32 CHECK_VARS=
33 endif
34
35 ifeq ($(RESMODE),static)
36 RESLDFLAGS= -L$(RESDIR) -l$(RESNAME)
37 RESCPPFLAGS=
38 CHECK_VARS=
39 endif
40
OLDNEW
« no previous file with comments | « icu52/source/samples/rules.mk ('k') | icu52/source/test/testdata/tstfiles.mk » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698