| OLD | NEW |
| 1 #****************************************************************************** | 1 #****************************************************************************** |
| 2 # | 2 # |
| 3 # Copyright (C) 1998-2014, International Business Machines | 3 # Copyright (C) 1998-2015, International Business Machines |
| 4 # Corporation and others. All Rights Reserved. | 4 # Corporation and others. All Rights Reserved. |
| 5 # | 5 # |
| 6 #****************************************************************************** | 6 #****************************************************************************** |
| 7 ## Top-level Makefile.in for ICU | 7 ## Top-level Makefile.in for ICU |
| 8 ## Stephen F. Booth | 8 ## Stephen F. Booth |
| 9 | 9 |
| 10 srcdir = @srcdir@ | 10 srcdir = @srcdir@ |
| 11 top_srcdir = @top_srcdir@ | 11 top_srcdir = @top_srcdir@ |
| 12 | 12 |
| 13 top_builddir = . | 13 top_builddir = . |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status | 328 && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status |
| 329 | 329 |
| 330 $(top_builddir)/config/icu-config: $(top_builddir)/Makefile $(top_srcdir)/config
/icu-config-top $(top_srcdir)/config/icu-config-bottom $(top_builddir)/config/Ma
kefile.inc @platform_make_fragment@ $(top_srcdir)/config/make2sh.sed | 330 $(top_builddir)/config/icu-config: $(top_builddir)/Makefile $(top_srcdir)/config
/icu-config-top $(top_srcdir)/config/icu-config-bottom $(top_builddir)/config/Ma
kefile.inc @platform_make_fragment@ $(top_srcdir)/config/make2sh.sed |
| 331 -$(RMV) $@ | 331 -$(RMV) $@ |
| 332 $(INSTALL_SCRIPT) $(top_srcdir)/config/icu-config-top $@ | 332 $(INSTALL_SCRIPT) $(top_srcdir)/config/icu-config-top $@ |
| 333 chmod u+w $@ | 333 chmod u+w $@ |
| 334 @echo "# Following from @platform_make_fragment@" >> $@ | 334 @echo "# Following from @platform_make_fragment@" >> $@ |
| 335 LC_ALL=C sed -f $(top_srcdir)/config/make2sh.sed < $(top_builddir)/confi
g/Makefile.inc | grep -v '#M#' | uniq >> $@ | 335 LC_ALL=C sed -f $(top_srcdir)/config/make2sh.sed < $(top_builddir)/confi
g/Makefile.inc | grep -v '#M#' | uniq >> $@ |
| 336 LC_ALL=C sed -f $(top_srcdir)/config/make2sh.sed < @platform_make_fragme
nt@ | grep -v '#M#' | uniq >> $@ | 336 LC_ALL=C sed -f $(top_srcdir)/config/make2sh.sed < @platform_make_fragme
nt@ | grep -v '#M#' | uniq >> $@ |
| 337 cat $(top_srcdir)/config/icu-config-bottom >> $@ | 337 cat $(top_srcdir)/config/icu-config-bottom >> $@ |
| 338 echo "# Rebuilt on "`date` >> $@ | |
| 339 chmod u-w $@ | 338 chmod u-w $@ |
| 340 | 339 |
| 341 config.status: $(srcdir)/configure $(srcdir)/common/unicode/uvernum.h | 340 config.status: $(srcdir)/configure $(srcdir)/common/unicode/uvernum.h |
| 342 @echo | 341 @echo |
| 343 @echo | 342 @echo |
| 344 @echo "*** config.status has become stale ***" | 343 @echo "*** config.status has become stale ***" |
| 345 @echo " 'configure' and/or 'uvernum.h' have changed, please" | 344 @echo " 'configure' and/or 'uvernum.h' have changed, please" |
| 346 @echo " do 'runConfigureICU' (or 'configure') again, as per" | 345 @echo " do 'runConfigureICU' (or 'configure') again, as per" |
| 347 @echo " the readme.html." | 346 @echo " the readme.html." |
| 348 @echo | 347 @echo |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 @echo `./config/icu-config --noverify --cxx` >> $(DESTDIR)/readme.txt | 399 @echo `./config/icu-config --noverify --cxx` >> $(DESTDIR)/readme.txt |
| 401 endif | 400 endif |
| 402 | 401 |
| 403 check-installed-icu: install | 402 check-installed-icu: install |
| 404 @echo "Testing ICU installed in $(prefix)" | 403 @echo "Testing ICU installed in $(prefix)" |
| 405 $(INSTALLED_INVOKE) $(bindir)/icuinfo$(EXEEXT) | 404 $(INSTALLED_INVOKE) $(bindir)/icuinfo$(EXEEXT) |
| 406 $(INSTALLED_INVOKE) $(bindir)/uconv$(EXEEXT) -V | 405 $(INSTALLED_INVOKE) $(bindir)/uconv$(EXEEXT) -V |
| 407 $(INSTALLED_INVOKE) $(bindir)/genrb$(EXEEXT) -V | 406 $(INSTALLED_INVOKE) $(bindir)/genrb$(EXEEXT) -V |
| 408 $(INSTALLED_INVOKE) $(bindir)/gencnval$(EXEEXT) -h | 407 $(INSTALLED_INVOKE) $(bindir)/gencnval$(EXEEXT) -h |
| 409 @echo INSTALLED ICU IN "$(prefix)" OK! | 408 @echo INSTALLED ICU IN "$(prefix)" OK! |
| OLD | NEW |