Changeset 5899 for branches/r9/Makefile.in
- Timestamp:
- Oct 7, 2015, 11:54:16 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/r9/Makefile.in
r4916 r5899 78 78 targets = \ 79 79 apps blt cmake examples expat expect gui htmlwidget itcl \ 80 itk lang lib optimizer shape sqlitetcl tcl tcllib \80 itk lang libs optimizer shape sqlitetcl tcl tcllib \ 81 81 tdom tk tkimg tls video vtk zlib packages \ 82 82 … … 108 108 jpeg = jpeg-8d 109 109 libpng = libpng-1.6.15 110 lib = lib110 libs = libs 111 111 openssl = openssl-1.0.1j 112 112 optimizer = optimizer … … 130 130 subdirs = \ 131 131 $(blt) $(cmake) $(expat) $(expect) \ 132 $(gui) $(htmlwidget) $(itcl) $(itk) $(lang) $(lib ) \132 $(gui) $(htmlwidget) $(itcl) $(itk) $(lang) $(libs) \ 133 133 $(optimizer) $(shape) \ 134 134 $(sqlitetcl) $(tcl) $(tcllib) $(tdom) $(tk) $(tkimg) \ … … 150 150 $(clean_itk) 151 151 $(clean_lang) 152 $(clean_lib )152 $(clean_libs) 153 153 $(clean_optimizer) 154 154 $(clean_shape) … … 531 531 touch-gui: 532 532 $(touch_gui) 533 force-gui: $(lib )/timestamp \533 force-gui: $(libs)/timestamp \ 534 534 $(blt)/timestamp \ 535 535 $(itk)/timestamp \ … … 564 564 endef 565 565 566 $(gui)/timestamp: $(lib )/timestamp \566 $(gui)/timestamp: $(libs)/timestamp \ 567 567 $(blt)/timestamp \ 568 568 $(itk)/timestamp \ … … 815 815 endef 816 816 817 $(lang)/timestamp: $(lib )/timestamp $(tcl)/timestamp $(itcl)/timestamp817 $(lang)/timestamp: $(libs)/timestamp $(tcl)/timestamp $(itcl)/timestamp 818 818 + $(clean_lang) 819 819 + $(fetch_lang) … … 828 828 # ------------------------------------------------------------------------- 829 829 830 lib _flags = \831 --enable-shared \ 832 $(common_flags) 833 834 lib : $(lib)/timestamp835 836 clean-lib :837 $(clean_lib )838 fetch-lib :839 $(fetch_lib )840 configure-lib :841 $(configure_lib )842 build-lib :843 $(build_lib )844 install-lib :845 $(install_lib )846 touch-lib :847 $(touch_lib )848 force-lib :849 + $(clean_lib )850 + $(fetch_lib )851 + $(configure_lib )852 + $(build_lib )853 + $(install_lib )854 + $(touch_lib )855 856 define clean_lib 857 $(MAKE) -C $(lib ) clean858 $(RM) $(lib )/timestamp859 endef 860 define fetch_lib 861 endef 862 define configure_lib 863 endef 864 define build_lib 865 $(MAKE) -C $(lib ) all866 endef 867 define install_lib 868 $(MAKE) -C $(lib ) install830 libs_flags = \ 831 --enable-shared \ 832 $(common_flags) 833 834 libs: $(libs)/timestamp 835 836 clean-libs: 837 $(clean_libs) 838 fetch-libs: 839 $(fetch_libs) 840 configure-libs: 841 $(configure_libs) 842 build-libs: 843 $(build_libs) 844 install-libs: 845 $(install_libs) 846 touch-libs: 847 $(touch_libs) 848 force-libs: 849 + $(clean_libs) 850 + $(fetch_libs) 851 + $(configure_libs) 852 + $(build_libs) 853 + $(install_libs) 854 + $(touch_libs) 855 856 define clean_libs 857 $(MAKE) -C $(libs) clean 858 $(RM) $(libs)/timestamp 859 endef 860 define fetch_libs 861 endef 862 define configure_libs 863 endef 864 define build_libs 865 $(MAKE) -C $(libs) all 866 endef 867 define install_libs 868 $(MAKE) -C $(libs) install 869 869 $(MKDIR_P) $(libdir) 870 870 $(INSTALL) -m 0444 rapptureConfig.sh $(libdir) 871 871 endef 872 define touch_lib 873 touch $(lib )/timestamp874 endef 875 876 $(lib )/timestamp:877 + $(clean_lib )878 + $(fetch_lib )879 + $(configure_lib )880 + $(build_lib )881 + $(install_lib )882 + $(touch_lib )872 define touch_libs 873 touch $(libs)/timestamp 874 endef 875 876 $(libs)/timestamp: 877 + $(clean_libs) 878 + $(fetch_libs) 879 + $(configure_libs) 880 + $(build_libs) 881 + $(install_libs) 882 + $(touch_libs) 883 883 884 884 # -------------------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.