xref: /aoo41x/main/icu/makefile.mk (revision 7871dc3e)
1*7871dc3eSAndrew Rist#**************************************************************
2*7871dc3eSAndrew Rist#
3*7871dc3eSAndrew Rist#  Licensed to the Apache Software Foundation (ASF) under one
4*7871dc3eSAndrew Rist#  or more contributor license agreements.  See the NOTICE file
5*7871dc3eSAndrew Rist#  distributed with this work for additional information
6*7871dc3eSAndrew Rist#  regarding copyright ownership.  The ASF licenses this file
7*7871dc3eSAndrew Rist#  to you under the Apache License, Version 2.0 (the
8*7871dc3eSAndrew Rist#  "License"); you may not use this file except in compliance
9*7871dc3eSAndrew Rist#  with the License.  You may obtain a copy of the License at
10*7871dc3eSAndrew Rist#
11*7871dc3eSAndrew Rist#    http://www.apache.org/licenses/LICENSE-2.0
12*7871dc3eSAndrew Rist#
13*7871dc3eSAndrew Rist#  Unless required by applicable law or agreed to in writing,
14*7871dc3eSAndrew Rist#  software distributed under the License is distributed on an
15*7871dc3eSAndrew Rist#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*7871dc3eSAndrew Rist#  KIND, either express or implied.  See the License for the
17*7871dc3eSAndrew Rist#  specific language governing permissions and limitations
18*7871dc3eSAndrew Rist#  under the License.
19*7871dc3eSAndrew Rist#
20*7871dc3eSAndrew Rist#**************************************************************
21*7871dc3eSAndrew Rist
22*7871dc3eSAndrew Rist
23cdf0e10cSrcweirPRJ=.
24cdf0e10cSrcweir
25cdf0e10cSrcweirPRJNAME=icu
26cdf0e10cSrcweirTARGET=so_icu
27cdf0e10cSrcweir
28cdf0e10cSrcweir# --- Settings -----------------------------------------------------
29cdf0e10cSrcweir
30cdf0e10cSrcweir.INCLUDE :	settings.mk
31cdf0e10cSrcweir
32cdf0e10cSrcweir# --- Files --------------------------------------------------------
33cdf0e10cSrcweir
34cdf0e10cSrcweir.INCLUDE :	icuversion.mk
35cdf0e10cSrcweir
36cdf0e10cSrcweir.IF "$(ICU_MICRO)"!="0"
37cdf0e10cSrcweirTARFILE_NAME=icu4c-$(ICU_MAJOR)_$(ICU_MINOR)_$(ICU_MICRO)-src
38cdf0e10cSrcweirTARFILE_MD5=2f6ecca935948f7db92d925d88d0d078
39cdf0e10cSrcweir.ELSE
40cdf0e10cSrcweirTARFILE_NAME=icu4c-$(ICU_MAJOR)_$(ICU_MINOR)-src
41cdf0e10cSrcweirTARFILE_MD5=
42cdf0e10cSrcweir.ENDIF
43cdf0e10cSrcweirTARFILE_ROOTDIR=icu
44cdf0e10cSrcweir
45cdf0e10cSrcweirPATCH_FILES=${TARFILE_NAME}.patch icu-mp.patch
46cdf0e10cSrcweir
47cdf0e10cSrcweir# ADDITIONAL_FILES=
48cdf0e10cSrcweir
49cdf0e10cSrcweir.IF "$(GUI)"=="UNX"
50cdf0e10cSrcweir.IF "$(COMNAME)"=="sunpro5"
51cdf0e10cSrcweir#.IF "$(BUILD_TOOLS)$/cc"=="$(shell +-which cc)"
52cdf0e10cSrcweir#CC:=$(COMPATH)$/bin$/cc
53cdf0e10cSrcweir#CXX:=$(COMPATH)$/bin$/CC
54cdf0e10cSrcweir#.ENDIF          # "$(BUILD_TOOLS)$/cc"=="$(shell +-which cc)"
55cdf0e10cSrcweir.ENDIF          # "$(COMNAME)"=="sunpro5"
56cdf0e10cSrcweir
57cdf0e10cSrcweir.IF "$(SYSBASE)"!=""
58cdf0e10cSrcweiricu_CFLAGS+=-I$(SYSBASE)$/usr$/include
59cdf0e10cSrcweir.IF "$(COMNAME)"=="sunpro5"
60cdf0e10cSrcweiricu_CFLAGS+=$(C_RESTRICTIONFLAGS)
61cdf0e10cSrcweir.ENDIF			# "$(COMNAME)"=="sunpro5"
62cdf0e10cSrcweir# add SYSBASE libraries and make certain that they are found *after* the
63cdf0e10cSrcweir# icu build internal libraries - in case that icu is available in SYSBASE
64cdf0e10cSrcweir# as well
65cdf0e10cSrcweiricu_LDFLAGS+= -L../lib  -L../../lib -L../stubdata -L../../stubdata  -L$(SYSBASE)$/usr$/lib
66cdf0e10cSrcweir.ENDIF			# "$(SYSBASE)"!=""
67cdf0e10cSrcweir
68cdf0e10cSrcweir.IF "$(OS)"=="MACOSX"
69cdf0e10cSrcweir.IF "$(EXTRA_CFLAGS)"!=""
70cdf0e10cSrcweirCPP:=gcc -E $(EXTRA_CFLAGS)
71cdf0e10cSrcweirCXX:=g++ $(EXTRA_CFLAGS)
72cdf0e10cSrcweirCC:=gcc $(EXTRA_CFLAGS)
73cdf0e10cSrcweir.EXPORT : CPP
74cdf0e10cSrcweir.ENDIF # "$(EXTRA_CFLAGS)"!=""
75cdf0e10cSrcweir.ENDIF # "$(OS)"=="MACOSX"
76cdf0e10cSrcweir
77cdf0e10cSrcweiricu_CFLAGS+=-O $(ARCH_FLAGS) $(EXTRA_CDEFS)
78cdf0e10cSrcweiricu_LDFLAGS+=$(EXTRA_LINKFLAGS)
79cdf0e10cSrcweiricu_CXXFLAGS+=-O $(ARCH_FLAGS) $(EXTRA_CDEFS)
80cdf0e10cSrcweir
81cdf0e10cSrcweir# remove conversion and transliteration data to reduce binary size.
82cdf0e10cSrcweirCONFIGURE_ACTION=rm data/mappings/ucm*.mk data/translit/trn*.mk ;
83cdf0e10cSrcweir
84cdf0e10cSrcweir# until someone introduces SOLARIS 64-bit builds
85cdf0e10cSrcweir.IF "$(OS)"=="SOLARIS"
86cdf0e10cSrcweirDISABLE_64BIT=--enable-64bit-libs=no
87cdf0e10cSrcweir.ENDIF			# "$(OS)"=="SOLARIS"
88cdf0e10cSrcweir
89cdf0e10cSrcweir.IF "$(HAVE_LD_HASH_STYLE)"  == "TRUE"
90cdf0e10cSrcweirLDFLAGSADD += -Wl,--hash-style=both
91cdf0e10cSrcweir.ENDIF
92cdf0e10cSrcweir
93cdf0e10cSrcweir.IF "$(HAVE_LD_BSYMBOLIC_FUNCTIONS)"  == "TRUE"
94cdf0e10cSrcweirLDFLAGSADD += -Wl,-Bsymbolic-functions -Wl,--dynamic-list-cpp-new -Wl,--dynamic-list-cpp-typeinfo
95cdf0e10cSrcweir.ENDIF
96cdf0e10cSrcweir
97cdf0e10cSrcweirCONFIGURE_DIR=source
98cdf0e10cSrcweir
99cdf0e10cSrcweirCONFIGURE_ACTION+=sh -c 'CFLAGS="$(icu_CFLAGS)" CXXFLAGS="$(icu_CXXFLAGS)" LDFLAGS="$(icu_LDFLAGS) $(LDFLAGSADD)" ./configure --enable-layout --enable-static --enable-shared=yes $(DISABLE_64BIT)'
100cdf0e10cSrcweir
101cdf0e10cSrcweir#CONFIGURE_FLAGS=--enable-layout --enable-static --enable-shared=yes --enable-64bit-libs=no
102cdf0e10cSrcweirCONFIGURE_FLAGS=
103cdf0e10cSrcweir
104cdf0e10cSrcweir# Use of
105cdf0e10cSrcweir# CONFIGURE_ACTION=sh -c 'CFLAGS=-O CXXFLAGS=-O ./configure'
106cdf0e10cSrcweir# CONFIGURE_FLAGS=--enable-layout --enable-static --enable-shared=yes --enable-64bit-libs=no
107cdf0e10cSrcweir# doesn't work as it would result in
108cdf0e10cSrcweir# sh -c 'CFLAGS=-O CXXFLAGS=-O ./configure' --enable-layout ...
109cdf0e10cSrcweir# note the position of the single quotes.
110cdf0e10cSrcweir
111cdf0e10cSrcweirBUILD_DIR=$(CONFIGURE_DIR)
112cdf0e10cSrcweirBUILD_ACTION=$(AUGMENT_LIBRARY_PATH) $(GNUMAKE) -j$(EXTMAXPROCESS)
113cdf0e10cSrcweirOUT2LIB= \
114cdf0e10cSrcweir	$(BUILD_DIR)$/lib$/libicudata$(DLLPOST).$(ICU_MAJOR)$(ICU_MINOR).$(ICU_MICRO) \
115cdf0e10cSrcweir	$(BUILD_DIR)$/lib$/libicudata$(DLLPOST).$(ICU_MAJOR)$(ICU_MINOR) \
116cdf0e10cSrcweir	$(BUILD_DIR)$/lib$/libicudata$(DLLPOST) \
117cdf0e10cSrcweir	$(BUILD_DIR)$/lib$/libicuuc$(DLLPOST).$(ICU_MAJOR)$(ICU_MINOR).$(ICU_MICRO) \
118cdf0e10cSrcweir	$(BUILD_DIR)$/lib$/libicuuc$(DLLPOST).$(ICU_MAJOR)$(ICU_MINOR) \
119cdf0e10cSrcweir	$(BUILD_DIR)$/lib$/libicuuc$(DLLPOST) \
120cdf0e10cSrcweir	$(BUILD_DIR)$/lib$/libicui18n$(DLLPOST).$(ICU_MAJOR)$(ICU_MINOR).$(ICU_MICRO) \
121cdf0e10cSrcweir	$(BUILD_DIR)$/lib$/libicui18n$(DLLPOST).$(ICU_MAJOR)$(ICU_MINOR) \
122cdf0e10cSrcweir	$(BUILD_DIR)$/lib$/libicui18n$(DLLPOST) \
123cdf0e10cSrcweir	$(BUILD_DIR)$/lib$/libicule$(DLLPOST).$(ICU_MAJOR)$(ICU_MINOR).$(ICU_MICRO) \
124cdf0e10cSrcweir	$(BUILD_DIR)$/lib$/libicule$(DLLPOST).$(ICU_MAJOR)$(ICU_MINOR) \
125cdf0e10cSrcweir	$(BUILD_DIR)$/lib$/libicule$(DLLPOST) \
126cdf0e10cSrcweir	$(BUILD_DIR)$/lib$/libicutu$(DLLPOST).$(ICU_MAJOR)$(ICU_MINOR).$(ICU_MICRO) \
127cdf0e10cSrcweir	$(BUILD_DIR)$/lib$/libicutu$(DLLPOST).$(ICU_MAJOR)$(ICU_MINOR) \
128cdf0e10cSrcweir	$(BUILD_DIR)$/lib$/libicutu$(DLLPOST)
129cdf0e10cSrcweir
130cdf0e10cSrcweirOUT2BIN= \
131cdf0e10cSrcweir	$(BUILD_DIR)$/bin$/genccode \
132cdf0e10cSrcweir	$(BUILD_DIR)$/bin$/genbrk \
133cdf0e10cSrcweir	$(BUILD_DIR)$/bin$/gencmn
134cdf0e10cSrcweir
135cdf0e10cSrcweir.ENDIF
136cdf0e10cSrcweir
137cdf0e10cSrcweir.IF "$(GUI)"=="WNT"
138cdf0e10cSrcweirCONFIGURE_DIR=source
139cdf0e10cSrcweir.IF "$(COM)"=="GCC"
140cdf0e10cSrcweirCONFIGURE_ACTION=rm data/mappings/ucm*.mk data/translit/trn*.mk ;
141cdf0e10cSrcweir.IF "$(MINGW_SHARED_GCCLIB)"=="YES"
142cdf0e10cSrcweiricu_LDFLAGS+=-shared-libgcc
143cdf0e10cSrcweir.ENDIF
144cdf0e10cSrcweir.IF "$(USE_MINGW)"=="cygwin"
145cdf0e10cSrcweiricu_LDFLAGS+=-L$(COMPATH)/lib/mingw -L$(COMPATH)/lib/w32api
146cdf0e10cSrcweir.ENDIF
147cdf0e10cSrcweiricu_LDFLAGS+=-L$(COMPATH)$/lib
148cdf0e10cSrcweiricu_LIBS=
149cdf0e10cSrcweir.IF "$(MINGW_SHARED_GXXLIB)"=="YES"
150cdf0e10cSrcweiricu_LIBS+=$(MINGW_SHARED_LIBSTDCPP)
151cdf0e10cSrcweir.ENDIF
152cdf0e10cSrcweiricu_LDFLAGS+=-Wl,--enable-runtime-pseudo-reloc-v2
153cdf0e10cSrcweirCONFIGURE_ACTION+=sh -c 'CFLAGS="-O -D_MT" CXXFLAGS="-O -D_MT" LDFLAGS="$(icu_LDFLAGS)" LIBS="$(icu_LIBS)" ./configure --build=i586-pc-mingw32 --enable-layout --enable-static --enable-shared=yes --enable-64bit-libs=no'
154cdf0e10cSrcweir
155cdf0e10cSrcweir#CONFIGURE_FLAGS=--enable-layout --enable-static --enable-shared=yes --enable-64bit-libs=no
156cdf0e10cSrcweirCONFIGURE_FLAGS=
157cdf0e10cSrcweir
158cdf0e10cSrcweir# Use of
159cdf0e10cSrcweir# CONFIGURE_ACTION=sh -c 'CFLAGS=-O CXXFLAGS=-O ./configure'
160cdf0e10cSrcweir# CONFIGURE_FLAGS=--enable-layout --enable-static --enable-shared=yes --enable-64bit-libs=no
161cdf0e10cSrcweir# doesn't work as it would result in
162cdf0e10cSrcweir# sh -c 'CFLAGS=-O CXXFLAGS=-O ./configure' --enable-layout ...
163cdf0e10cSrcweir# note the position of the single quotes.
164cdf0e10cSrcweir
165cdf0e10cSrcweirBUILD_DIR=$(CONFIGURE_DIR)
166cdf0e10cSrcweirBUILD_ACTION=$(GNUMAKE)
167cdf0e10cSrcweirOUT2LIB=
168cdf0e10cSrcweir
169cdf0e10cSrcweirOUT2BIN= \
170cdf0e10cSrcweir	$(BUILD_DIR)$/lib$/icudt$(ICU_MAJOR)$(ICU_MINOR)$(DLLPOST) \
171cdf0e10cSrcweir	$(BUILD_DIR)$/lib$/icuuc$(ICU_MAJOR)$(ICU_MINOR)$(DLLPOST) \
172cdf0e10cSrcweir	$(BUILD_DIR)$/lib$/icuin$(ICU_MAJOR)$(ICU_MINOR)$(DLLPOST) \
173cdf0e10cSrcweir	$(BUILD_DIR)$/lib$/icule$(ICU_MAJOR)$(ICU_MINOR)$(DLLPOST) \
174cdf0e10cSrcweir	$(BUILD_DIR)$/lib$/icutu$(ICU_MAJOR)$(ICU_MINOR)$(DLLPOST) \
175cdf0e10cSrcweir	$(BUILD_DIR)$/bin$/genccode.exe \
176cdf0e10cSrcweir	$(BUILD_DIR)$/bin$/genbrk.exe \
177cdf0e10cSrcweir	$(BUILD_DIR)$/bin$/gencmn.exe
178cdf0e10cSrcweir
179cdf0e10cSrcweir.ELSE
180cdf0e10cSrcweirBUILD_DIR=source
181cdf0e10cSrcweir.IF "full_debug" == ""
182cdf0e10cSrcweir
183cdf0e10cSrcweir# Activating the debug mechanism produces incompatible libraries, you'd have
184cdf0e10cSrcweir# at least to relink all modules that are directly using ICU. Note that library
185cdf0e10cSrcweir# names get a 'd' appended and you'd have to edit the solenv/inc/libs.mk
186cdf0e10cSrcweir# ICU*LIB macros as well. Normally you don't want all this.
187cdf0e10cSrcweir#
188cdf0e10cSrcweir# Instead, use the normal already existing Release build and edit the
189cdf0e10cSrcweir# corresponding *.vcproj file of the section you're interested in. Make sure
190cdf0e10cSrcweir# that
191cdf0e10cSrcweir# - for the VCCLCompilerTool section the following line exists:
192cdf0e10cSrcweir#   DebugInformationFormat="3"
193cdf0e10cSrcweir# - and for the VCLinkerTool the line
194cdf0e10cSrcweir#   GenerateDebugInformation="TRUE"
195cdf0e10cSrcweir# Then delete the corresponding Release output directory, and delete the target
196cdf0e10cSrcweir# flag files
197cdf0e10cSrcweir# $(OUTPATH)/misc/build/so_built_so_icu
198cdf0e10cSrcweir# $(OUTPATH)/misc/build/so_predeliver_so_icu
199cdf0e10cSrcweir# and run dmake again, after which you may copy the resulting libraries to your
200cdf0e10cSrcweir# OOo/SO installation.
201cdf0e10cSrcweirICU_BUILD_VERSION=Debug
202cdf0e10cSrcweirICU_BUILD_LIBPOST=d
203cdf0e10cSrcweir.ELSE
204cdf0e10cSrcweirICU_BUILD_VERSION=Release
205cdf0e10cSrcweirICU_BUILD_LIBPOST=
206cdf0e10cSrcweir.ENDIF
207cdf0e10cSrcweir
208cdf0e10cSrcweirCONFIGURE_ACTION+= $(PERL) ..$/..$/..$/..$/..$/createmak.pl ..$/..$/..$/..$/..$/createmak.cfg .
209cdf0e10cSrcweir
210cdf0e10cSrcweir.IF "$(CCNUMVER)"<="001400000000"
211cdf0e10cSrcweirBUILD_ACTION=cd allinone && nmake /f all.mak EXFLAGS="-EHsc" && cd ..$/..
212cdf0e10cSrcweir.ELSE
213cdf0e10cSrcweirBUILD_ACTION=cd allinone && nmake /f all.mak EXFLAGS="-EHa -Zc:wchar_t-" && cd ..$/..
214cdf0e10cSrcweir.ENDIF
215cdf0e10cSrcweir
216cdf0e10cSrcweirOUT2LIB= \
217cdf0e10cSrcweir	$(BUILD_DIR)$/..$/lib$/icudata.lib \
218cdf0e10cSrcweir	$(BUILD_DIR)$/..$/lib$/icuin$(ICU_BUILD_LIBPOST).lib \
219cdf0e10cSrcweir	$(BUILD_DIR)$/..$/lib$/icuuc$(ICU_BUILD_LIBPOST).lib \
220cdf0e10cSrcweir	$(BUILD_DIR)$/..$/lib$/icule$(ICU_BUILD_LIBPOST).lib \
221cdf0e10cSrcweir	$(BUILD_DIR)$/..$/lib$/icutu$(ICU_BUILD_LIBPOST).lib
222cdf0e10cSrcweir
223cdf0e10cSrcweirOUT2BIN= \
224cdf0e10cSrcweir	$(BUILD_DIR)$/..$/bin$/icudt$(ICU_MAJOR)$(ICU_MINOR).dll \
225cdf0e10cSrcweir	$(BUILD_DIR)$/..$/bin$/icuin$(ICU_MAJOR)$(ICU_MINOR)$(ICU_BUILD_LIBPOST).dll \
226cdf0e10cSrcweir	$(BUILD_DIR)$/..$/bin$/icuuc$(ICU_MAJOR)$(ICU_MINOR)$(ICU_BUILD_LIBPOST).dll \
227cdf0e10cSrcweir	$(BUILD_DIR)$/..$/bin$/icule$(ICU_MAJOR)$(ICU_MINOR)$(ICU_BUILD_LIBPOST).dll \
228cdf0e10cSrcweir	$(BUILD_DIR)$/..$/bin$/icutu$(ICU_MAJOR)$(ICU_MINOR)$(ICU_BUILD_LIBPOST).dll \
229cdf0e10cSrcweir	$(BUILD_DIR)$/..$/bin$/genccode.exe \
230cdf0e10cSrcweir	$(BUILD_DIR)$/..$/bin$/genbrk.exe \
231cdf0e10cSrcweir    $(BUILD_DIR)$/..$/bin$/gencmn.exe
232cdf0e10cSrcweir
233cdf0e10cSrcweir.ENDIF
234cdf0e10cSrcweir.ENDIF		# "$(GUI)"=="WNT"
235cdf0e10cSrcweir
236cdf0e10cSrcweir# --- Targets ------------------------------------------------------
237cdf0e10cSrcweir
238cdf0e10cSrcweir.INCLUDE : set_ext.mk
239cdf0e10cSrcweir.INCLUDE :	target.mk
240cdf0e10cSrcweir.INCLUDE :	tg_ext.mk
241cdf0e10cSrcweir
242cdf0e10cSrcweir.IF "$(BINARY_PATCH_FILES)"!=""
243cdf0e10cSrcweir
244cdf0e10cSrcweir$(PACKAGE_DIR)$/so_add_binary :  $(PACKAGE_DIR)$/$(ADD_FILES_FLAG_FILE)
245cdf0e10cSrcweir	cd $(PACKAGE_DIR) && gunzip -c $(BACK_PATH)$(BINARY_PATCH_FILES) | tar -xvf -
246cdf0e10cSrcweir	$(TOUCH) $(PACKAGE_DIR)$/so_add_binary
247cdf0e10cSrcweir
248cdf0e10cSrcweir$(PACKAGE_DIR)$/$(CONFIGURE_FLAG_FILE) : $(PACKAGE_DIR)$/so_add_binary
249cdf0e10cSrcweir
250cdf0e10cSrcweir.ENDIF
251cdf0e10cSrcweir
252cdf0e10cSrcweir.IF "$(GUI)$(COM)"=="WNTGCC"
253cdf0e10cSrcweirALLTAR : \
254cdf0e10cSrcweir	$(LB)$/icudata.lib \
255cdf0e10cSrcweir	$(LB)$/icuin$(ICU_BUILD_LIBPOST).lib \
256cdf0e10cSrcweir	$(LB)$/icuuc$(ICU_BUILD_LIBPOST).lib \
257cdf0e10cSrcweir	$(LB)$/icule$(ICU_BUILD_LIBPOST).lib \
258cdf0e10cSrcweir	$(LB)$/icutu$(ICU_BUILD_LIBPOST).lib
259cdf0e10cSrcweir
260cdf0e10cSrcweir$(LB)$/icudata.lib : $(PACKAGE_DIR)$/$(PREDELIVER_FLAG_FILE)
261cdf0e10cSrcweir	$(TOUCH) $@
262cdf0e10cSrcweir
263cdf0e10cSrcweir$(LB)$/icuin$(ICU_BUILD_LIBPOST).lib : $(PACKAGE_DIR)$/$(PREDELIVER_FLAG_FILE)
264cdf0e10cSrcweir	$(TOUCH) $@
265cdf0e10cSrcweir
266cdf0e10cSrcweir$(LB)$/icuuc$(ICU_BUILD_LIBPOST).lib : $(PACKAGE_DIR)$/$(PREDELIVER_FLAG_FILE)
267cdf0e10cSrcweir	$(TOUCH) $@
268cdf0e10cSrcweir
269cdf0e10cSrcweir$(LB)$/icule$(ICU_BUILD_LIBPOST).lib : $(PACKAGE_DIR)$/$(PREDELIVER_FLAG_FILE)
270cdf0e10cSrcweir	$(TOUCH) $@
271cdf0e10cSrcweir
272cdf0e10cSrcweir$(LB)$/icutu$(ICU_BUILD_LIBPOST).lib : $(PACKAGE_DIR)$/$(PREDELIVER_FLAG_FILE)
273cdf0e10cSrcweir	$(TOUCH) $@
274cdf0e10cSrcweir.ENDIF
275cdf0e10cSrcweir
276cdf0e10cSrcweir# Since you never know what will be in a patch (for example, it may already
277cdf0e10cSrcweir# patch at configure level) or in the case of a binary patch, we remove the
278cdf0e10cSrcweir# entire package directory if a patch is newer.
279cdf0e10cSrcweir# Changes in this makefile could also make a complete build necessary if
280cdf0e10cSrcweir# configure is affected.
281cdf0e10cSrcweir$(PACKAGE_DIR)$/$(UNTAR_FLAG_FILE) : makefile.mk
282cdf0e10cSrcweir
283