source: branches/r9/Makefile.in @ 4869

Last change on this file since 4869 was 4869, checked in by gah, 10 years ago
File size: 33.2 KB
Line 
1
2# ------------------------------------------------------------------------
3#       Makefile for Rappture
4# ------------------------------------------------------------------------
5
6# ------------------------------------------------------------------------
7#       C Compiler options
8# ------------------------------------------------------------------------
9
10RAPPTURE_MAJOR_VERSION =        @RAPPTURE_MAJOR_VERSION@
11RAPPTURE_MINOR_VERSION =        @RAPPTURE_MINOR_VERSION@
12RAPPTURE_RELEASE_SERIAL =       @RAPPTURE_RELEASE_SERIAL@
13X_INCLUDES =            @X_INCLUDES@
14X_LIBRARIES =           @X_LIBRARIES@
15WORDSIZE =              @WORDSIZE@
16version = $(RAPPTURE_MAJOR_VERSION).$(RAPPTURE_MINOR_VERSION).$(RAPPTURE_RELEASE_SERIAL)
17runtime =               $(shell cd ../rappture/runtime; pwd)
18TAG =                   branches/blt4
19VTK_VERSION =           6.0
20# ------------------------------------------------------------------------
21#       Source and targer installation directories
22# ------------------------------------------------------------------------
23
24bindir =                $(exec_prefix)/bin
25datadir =               @datadir@
26datarootdir =           @datarootdir@
27exec_prefix =           @exec_prefix@
28incdir =                $(prefix)/include
29includedir =            @includedir@
30libdir =                @libdir@
31prefix =                @prefix@
32scriptdir =             $(exec_prefix)/scripts
33pkgdir =                $(exec_prefix)/lib
34srcdir =                $(shell cd @srcdir@; pwd)
35statsdir =              @STATSDIR@
36
37# ------------------------------------------------------------------------
38#       You don't need to edit anything beyond this point
39# ------------------------------------------------------------------------
40
41INSTALL =               @INSTALL@
42INSTALL_DATA =          @INSTALL_DATA@
43DESTDIR = 
44RANLIB =                @RANLIB@
45MAKE =                  make
46SHELL =                 /bin/sh
47AR =                    ar rc
48RM =                    rm -f
49LN_S =                  @LN_S@
50VPATH =                 $(srcdir)
51MKDIR_P =               @MKDIR_P@
52CP =                    /bin/cp
53HAVE_VTK =              @HAVE_VTK@
54
55common_flags =          --prefix=$(prefix) --exec_prefix=$(exec_prefix)
56x_flags =
57ifneq ("$(X_INCLUDES)", )
58  x_flags += --x-includes=$(X_INCLUDES)
59endif
60ifneq ("$(X_LIBRARIES)", )
61  x_flags += --x-includes=$(X_LIBRARIES)
62endif
63
64PATH := $(bindir):$(PATH)
65
66targets = \
67        blt builder cmake examples expat expect gui htmlwidget itcl \
68        itk lang lib optimizer shape sqlitetcl tcl tcllib \
69        tdom tester tk tkimg tls video vtk zlib  packages objects runner
70
71.PHONY: $(targets)
72
73.NOTPARALLEL:
74
75all: gui lang all_packages
76
77all_packages: runner tester objects builder packages video optimizer
78
79update:
80        for i in $(srcdir)/runtime/*; do \
81           (cd $$i; svn update; svn status) \
82        done
83
84# Aliases for package directory names.
85
86blt = blt4
87cmake = cmake-2.8.12.2
88examples = examples
89expat = expat-2.1.0
90expect = expect5.45
91freetype = freetype-2.5.3
92gui = gui
93htmlwidget = htmlwidget-3a14
94itcl = itcl3.4
95itk = itk3.3
96jpeg = jpeg-8d
97libpng = libpng-1.6.15
98lib = lib
99openssl = openssl-1.0.1j
100optimizer = optimizer
101shape = shape0.4
102sqlitetcl = sqlite-src-3080703
103sqlitetcl = sqlite-3071502
104tcl = tcl8.5.10
105tcllib = tcllib-1.15
106tdom = tDOM-0.8.3
107tiff = tiff-4.0.3
108tk = tk8.5.10
109tkimg = tkimg1.4
110tls = tls1.6
111vtk = vtk-6.0.0
112zlib = zlib
113tester = tester
114builder = builder
115lang = lang
116video = video
117runner = runner
118objects = objects
119
120subdirs = \
121        $(blt) $(builder) $(cmake) $(examples) $(expat) $(expect) \
122        $(gui) $(htmlwidget) $(itcl) $(itk) $(lang) $(lib)  \
123        $(optimizer) $(shape) \
124        $(sqlitetcl) $(tcl) $(tcllib) $(tdom) $(tester) $(tk) $(tkimg) \
125        $(tls) $(vtk) $(zlib)
126
127ifeq ("$(HAVE_VTK)", 1)
128  vtk_timestamp   = $(vtk)/timestamp
129  cmake_timestamp = $(cmake)/timestamp
130endif
131
132clean:
133        $(RM) -r $(subdirs)
134
135# -------------------------------------------------------------------------
136#  BLT
137# -------------------------------------------------------------------------
138
139blt_flags =     \
140                --enable-shared \
141                $(common_flags)
142
143blt: $(blt)/timestamp
144
145clean-blt:
146        $(clean_blt)
147fetch-blt:
148        $(fetch_blt)
149configure-blt:
150        $(configure_blt)
151build-blt:
152        $(build_blt)
153install-blt:
154        $(install_blt)
155touch-blt:
156        $(touch_blt)
157force-blt: $(tcl)/timestamp $(tk)/timestamp
158        + $(clean_blt)
159        + $(fetch_blt)
160        + $(configure_blt)
161        + $(build_blt)
162        + $(install_blt)
163        + $(touch_blt)
164
165define clean_blt
166        $(RM) -r $(blt)
167endef
168define fetch_blt
169        sh $(srcdir)/fetch.sh $(TAG) $(runtime) $(blt)
170endef
171define configure_blt
172        $(MKDIR_P) $(blt)
173        cd $(blt); $(runtime)/$(blt)/configure $(blt_flags)
174endef
175define build_blt
176        $(MAKE)  -C $(blt) all
177endef
178define install_blt
179        $(MAKE) -C $(blt) install
180endef
181define touch_blt
182        touch $(blt)/timestamp
183endef
184
185$(blt)/timestamp: $(tcl)/timestamp $(tk)/timestamp
186        + $(clean_blt)
187        + $(fetch_blt)
188        + $(configure_blt)
189        + $(build_blt)
190        + $(install_blt)
191        + $(touch_blt)
192
193# -------------------------------------------------------------------------
194#  BUILDER
195# -------------------------------------------------------------------------
196
197builder_flags = \
198        --with-tclsh="$(bindir)/tclsh8.4" \
199        --enable-shared \
200        $(common_flags)
201
202builder: $(builder)/timestamp
203
204clean-builder:
205        $(clean_builder)
206fetch-builder:
207        $(fetch_builder)
208configure-builder:
209build-builder:
210        $(build_builder)
211install-builder:
212        $(install_builder)
213touch-builder:
214        $(touch_builder)
215force-builder: $(gui)/timestamp
216        + $(clean_builder)
217        + $(fetch_builder)
218        + $(configure_builder)
219        + $(build_builder)
220        + $(install_builder)
221        + $(touch_builder)
222
223define clean_builder
224        $(MAKE) -C $(builder) clean
225endef
226define fetch_builder
227endef
228define build_builder
229        $(MAKE) -C $(builder) all
230endef
231define install_builder
232        $(MAKE) -C $(builder) install
233endef
234define touch_builder
235        touch $(builder)/timestamp
236endef
237
238$(builder)/timestamp: $(lib)/timestamp $(itcl)/timestamp $(gui)/timestamp
239        + $(clean_builder)
240        + $(fetch_builder)
241        + $(configure_builder)
242        + $(build_builder)
243        + $(install_builder)
244        + $(touch_builder)
245
246# -------------------------------------------------------------------------
247#  CMAKE
248# -------------------------------------------------------------------------
249
250cmake_flags =   \
251        --prefix=$(prefix)
252
253cmake: $(cmake)/timestamp
254
255clean-cmake:
256        $(clean_cmake)
257fetch-cmake:
258        $(fetch_cmake)
259configure-cmake:
260        $(configure_cmake)
261build-cmake:
262        $(build_cmake)
263install-cmake:
264        $(install_cmake)
265touch-cmake:
266        $(touch_cmake)
267force-cmake:
268        + $(clean_cmake)
269        + $(fetch_cmake)
270        + $(configure_cmake)
271        + $(build_cmake)
272        + $(install_cmake)
273        + $(touch_cmake)
274
275define clean_cmake
276        $(RM) -r $(cmake)
277endef
278define fetch_cmake
279        sh $(srcdir)/fetch.sh $(TAG) $(runtime) $(cmake)
280endef
281define configure_cmake
282        $(MKDIR_P) $(cmake)
283        cd $(cmake); $(runtime)/$(cmake)/configure $(cmake_flags)
284endef
285define build_cmake
286        $(MAKE)  -C $(cmake) all
287endef
288define install_cmake
289        $(MAKE) -C $(cmake) install
290endef
291define touch_cmake
292        touch $(cmake)/timestamp
293endef
294
295$(cmake)/timestamp:
296        + $(clean_cmake)
297        + $(fetch_cmake)
298        + $(configure_cmake)
299        + $(build_cmake)
300        + $(install_cmake)
301        + $(touch_cmake)
302
303# -------------------------------------------------------------------------
304#  EXAMPLES
305# -------------------------------------------------------------------------
306
307examples_flags =        \
308        --with-tclsh="$(bindir)/tclsh8.4" \
309        --enable-shared \
310        $(common_flags)
311
312examples: $(examples)/timestamp
313
314clean-examples:
315        $(clean_examples)
316fetch-examples:
317        $(fetch_examples)
318configure-examples:
319        $(configure_examples)
320build-examples:
321        $(build_examples)
322install-examples:
323        $(install_examples)
324touch-examples:
325        $(touch_examples)
326force-examples: $(gui)/timestamp
327        + $(clean_examples)
328        + $(fetch_examples)
329        + $(configure_examples)
330        + $(build_examples)
331        + $(install_examples)
332        + $(touch_examples)
333
334define clean_examples
335        $(MAKE) -C $(examples) clean
336endef
337define fetch_examples
338endef
339define configure_examples
340        $(MKDIR_P) $(examples)
341endef
342define build_examples
343        $(MAKE) -C $(examples) all
344endef
345define install_examples
346        $(MAKE) -C $(examples) install
347endef
348define touch_examples
349        touch $(examples)/timestamp
350endef
351
352$(examples)/timestamp: $(gui)/timestamp
353        + $(clean_examples)
354        + $(fetch_examples)
355        + $(configure_examples)
356        + $(build_examples)
357        + $(install_examples)
358        + $(touch_examples)
359
360# -------------------------------------------------------------------------
361#  EXPAT
362# -------------------------------------------------------------------------
363
364expat_flags =   \
365        --enable-shared \
366        $(common_flags)
367
368expat: $(expat)/timestamp
369
370clean-expat:
371        $(clean_expat)
372fetch-expat:
373        $(fetch_expat)
374configure-expat:
375        $(configure_expat)
376build-expat:
377        $(build_expat)
378install-expat:
379        $(install_expat)
380touch-expat:
381        $(touch_expat)
382force-expat:
383        + $(clean_expat)
384        + $(fetch_expat)
385        + $(configure_expat)
386        + $(build_expat)
387        + $(install_expat)
388        + $(touch_expat)
389
390define clean_expat
391        $(RM) -r $(expat)
392endef
393define fetch_expat
394        sh $(srcdir)/fetch.sh $(TAG) $(runtime) $(expat)
395endef
396define configure_expat
397        $(MKDIR_P) $(expat)
398        cd $(expat); $(runtime)/$(expat)/configure $(expat_flags)
399endef
400define build_expat
401        $(MAKE)  -C $(expat) all
402endef
403define install_expat
404        $(MAKE) -C $(expat) install
405endef
406define touch_expat
407        touch $(expat)/timestamp
408endef
409
410$(expat)/timestamp:
411        + $(clean_expat)
412        + $(fetch_expat)
413        + $(configure_expat)
414        + $(build_expat)
415        + $(install_expat)
416        + $(touch_expat)
417
418# -------------------------------------------------------------------------
419#  EXPECT
420# -------------------------------------------------------------------------
421
422expect_flags =  \
423        --enable-shared \
424        --enable-64bit \
425        --with-tcl=$(libdir) \
426        --with-tclinclude=$(incdir) \
427        $(common_flags)
428
429expect: $(expect)/timestamp
430
431clean-expect:
432        $(clean_expect)
433fetch-expect:
434        $(fetch_expect)
435configure-expect:
436        $(configure_expect)
437build-expect:
438        $(build_expect)
439install-expect:
440        $(install_expect)
441touch-expect:
442        $(touch_expect)
443force-expect: $(tcl)/timestamp $(tk)/timestamp
444        + $(clean_expect)
445        + $(fetch_expect)
446        + $(configure_expect)
447        + $(build_expect)
448        + $(install_expect)
449        + $(touch_expect)
450
451define clean_expect
452        $(RM) -r $(expect)
453endef
454define fetch_expect
455        sh $(srcdir)/fetch.sh $(TAG) $(runtime) $(expect)
456endef
457define configure_expect
458        $(MKDIR_P) $(expect)
459        cd $(expect); $(runtime)/$(expect)/configure $(expect_flags)
460endef
461define build_expect
462        $(MAKE)  -C $(expect) all
463endef
464define install_expect
465        $(MAKE) -C $(expect) install
466endef
467define touch_expect
468        touch $(expect)/timestamp
469endef
470
471$(expect)/timestamp: $(tcl)/timestamp $(tk)/timestamp
472        + $(clean_expect)
473        + $(fetch_expect)
474        + $(configure_expect)
475        + $(build_expect)
476        + $(install_expect)
477        + $(touch_expect)
478
479# -------------------------------------------------------------------------
480#  GUI
481# -------------------------------------------------------------------------
482
483gui_flags =     \
484        $(common_flags)
485
486gui: $(gui)/timestamp
487
488clean-gui:
489        $(clean_gui)
490fetch-gui:
491        $(fetch_gui)
492configure-gui:
493        $(configure_gui)
494build-gui:
495        $(build_gui)
496install-gui:
497        $(install_gui)
498touch-gui:
499        $(touch_gui)
500force-gui: $(lib)/timestamp \
501                  $(blt)/timestamp \
502                  $(itk)/timestamp \
503                  $(htmlwidget)/timestamp \
504                  $(shape)/timestamp \
505                  $(sqlitetcl)/timestamp \
506                  $(vtk_timestamp)
507        + $(clean_gui)
508        + $(fetch_gui)
509        + $(configure_gui)
510        + $(build_gui)
511        + $(install_gui)
512        + $(touch_gui)
513
514define clean_gui
515        $(RM) -r $(gui)
516endef
517define fetch_gui
518endef
519define configure_gui
520        $(MKDIR_P) $(gui)
521        cd $(gui); $(srcdir)/$(gui)/configure $(gui_flags)
522endef
523define build_gui
524        $(MAKE) -C $(gui) all
525endef
526define install_gui
527        $(MAKE) -C $(gui) install
528endef
529define touch_gui
530        touch $(gui)/timestamp
531endef
532
533$(gui)/timestamp: $(lib)/timestamp \
534                  $(blt)/timestamp \
535                  $(itk)/timestamp \
536                  $(htmlwidget)/timestamp \
537                  $(shape)/timestamp \
538                  $(tdom)/timestamp \
539                  $(tcllib)/timestamp \
540                  $(tls)/timestamp \
541                  $(tkimg)/timestamp \
542                  $(sqlitetcl)/timestamp \
543                  $(vtk_timestamp)
544        + $(clean_gui)
545        + $(fetch_gui)
546        + $(configure_gui)
547        + $(build_gui)
548        + $(install_gui)
549        + $(touch_gui)
550
551# -------------------------------------------------------------------------
552#  HTMLWIDGET
553# -------------------------------------------------------------------------
554
555htmlwidget_flags = \
556        --enable-shared \
557        $(common_flags)
558
559htmlwidget: $(htmlwidget)/timestamp
560
561clean-htmlwidget:
562        $(clean_htmlwidget)
563fetch-htmlwidget:
564        $(fetch_htmlwidget)
565configure-htmlwidget:
566        $(configure_htmlwidget)
567build-htmlwidget:
568        $(build_htmlwidget)
569install-htmlwidget:
570        $(install_htmlwidget)
571touch-htmlwidget:
572        $(touch_htmlwidget)
573force-htmlwidget: $(tk)/timestamp
574        + $(clean_htmlwidget)
575        + $(fetch_htmlwidget)
576        + $(configure_htmlwidget)
577        + $(build_htmlwidget)
578        + $(install_htmlwidget)
579        + $(touch_htmlwidget)
580
581define clean_htmlwidget
582        $(RM) -r $(htmlwidget)
583endef
584define fetch_htmlwidget
585        sh $(srcdir)/fetch.sh $(TAG) $(runtime) $(htmlwidget)
586endef
587define configure_htmlwidget
588        $(MKDIR_P) $(htmlwidget)
589        cd $(htmlwidget); $(runtime)/$(htmlwidget)/configure $(htmlwidget_flags)
590endef
591define build_htmlwidget
592        $(MAKE) -C $(htmlwidget) all
593endef
594define install_htmlwidget
595        $(MAKE) -C $(htmlwidget) install
596endef
597define touch_htmlwidget
598        touch $(htmlwidget)/timestamp
599endef
600
601$(htmlwidget)/timestamp: $(tk)/timestamp
602        + $(clean_htmlwidget)
603        + $(fetch_htmlwidget)
604        + $(configure_htmlwidget)
605        + $(build_htmlwidget)
606        + $(install_htmlwidget)
607        + $(touch_htmlwidget)
608
609# -------------------------------------------------------------------------
610#  ITCL
611# -------------------------------------------------------------------------
612
613itcl_flags =    \
614        --enable-shared \
615        $(common_flags)
616
617itcl: $(itcl)/timestamp
618
619clean-itcl:
620        $(clean_itcl)
621fetch-itcl:
622        $(fetch_itcl)
623configure-itcl:
624        $(configure_itcl)
625build-itcl:
626        $(build_itcl)
627install-itcl:
628        $(install_itcl)
629touch-itcl:
630        $(touch_itcl)
631force-itcl:
632        + $(clean_itcl)
633        + $(fetch_itcl)
634        + $(configure_itcl)
635        + $(build_itcl)
636        + $(install_itcl)
637        + $(touch_itcl)
638
639define clean_itcl
640        $(RM) -r $(itcl)
641endef
642define fetch_itcl
643        sh $(srcdir)/fetch.sh $(TAG) $(runtime) $(itcl)
644endef
645define configure_itcl
646        $(MKDIR_P) $(itcl)
647        cd $(itcl); $(runtime)/$(itcl)/configure $(itcl_flags)
648endef
649define build_itcl
650        $(MAKE)  -C $(itcl) all
651endef
652define install_itcl
653        $(MAKE) -C $(itcl) install
654endef
655define touch_itcl
656        touch $(itcl)/timestamp
657endef
658
659$(itcl)/timestamp: $(tcl)/timestamp
660        + $(clean_itcl)
661        + $(fetch_itcl)
662        + $(configure_itcl)
663        + $(build_itcl)
664        + $(install_itcl)
665        + $(touch_itcl)
666
667# -------------------------------------------------------------------------
668#  ITK
669# -------------------------------------------------------------------------
670
671itk_flags =     \
672        --enable-shared \
673        $(common_flags)
674
675itk: $(itk)/timestamp
676
677clean-itk:
678        $(clean_itk)
679fetch-itk:
680        $(fetch_itk)
681configure-itk:
682        $(configure_itk)
683build-itk:
684        $(build_itk)
685install-itk:
686        $(install_itk)
687touch-itk:
688        $(touch_itk)
689force-itk: $(itcl)/timestamp $(tk)/timestamp
690        + $(clean_itk)
691        + $(fetch_itk)
692        + $(configure_itk)
693        + $(build_itk)
694        + $(install_itk)
695        + $(touch_itk)
696
697define clean_itk
698        $(RM) -r $(itk)
699endef
700define fetch_itk
701        sh $(srcdir)/fetch.sh $(TAG) $(runtime) $(itk)
702endef
703define configure_itk
704        $(MKDIR_P) $(itk)
705        cd $(itk); $(runtime)/$(itk)/configure $(itk_flags)
706endef
707define build_itk
708        $(MAKE) -C $(itk) all
709endef
710define install_itk
711        $(MAKE) -C $(itk) install
712endef
713define touch_itk
714        touch $(itk)/timestamp
715endef
716
717$(itk)/timestamp: $(itcl)/timestamp $(tk)/timestamp
718        + $(clean_itk)
719        + $(fetch_itk)
720        + $(configure_itk)
721        + $(build_itk)
722        + $(install_itk)
723        + $(touch_itk)
724
725# -------------------------------------------------------------------------
726#  LANG
727# -------------------------------------------------------------------------
728
729lang_flags =    \
730        --enable-shared \
731        $(common_flags)
732
733lang: $(lang)/timestamp
734
735clean-lang:
736        $(clean_lang)
737fetch-lang:
738        $(fetch_lang)
739configure-lang:
740        $(configure_lang)
741build-lang:
742        $(build_lang)
743install-lang:
744        $(install_lang)
745touch-lang:
746        $(touch_lang)
747force-lang: $(gui)/timestamp
748        + $(clean_lang)
749        + $(fetch_lang)
750        + $(configure_lang)
751        + $(build_lang)
752        + $(install_lang)
753        + $(touch_lang)
754
755define clean_lang
756        $(RM) -r $(lang)
757endef
758define fetch_lang
759endef
760define configure_lang
761        $(MKDIR_P) $(lang)
762        cd $(lang); $(srcdir)/$(lang)/configure $(lang_flags)
763endef
764define build_lang
765        $(MAKE) -C $(lang) all
766endef
767define install_lang
768        $(MAKE) -C $(lang) install
769endef
770define touch_lang
771        touch $(lang)/timestamp
772endef
773
774$(lang)/timestamp: $(lib)/timestamp  $(tcl)/timestamp $(itcl)/timestamp
775        + $(clean_lang)
776        + $(fetch_lang)
777        + $(configure_lang)
778        + $(build_lang)
779        + $(install_lang)
780        + $(touch_lang)
781
782
783# -------------------------------------------------------------------------
784#  LIB
785# -------------------------------------------------------------------------
786
787lib_flags =     \
788        --enable-shared \
789        $(common_flags)
790
791lib: $(lib)/timestamp
792
793clean-lib:
794        $(clean_lib)
795fetch-lib:
796        $(fetch_lib)
797configure-lib:
798        $(configure_lib)
799build-lib:
800        $(build_lib)
801install-lib:
802        $(install_lib)
803touch-lib:
804        $(touch_lib)
805force-lib:
806        + $(clean_lib)
807        + $(fetch_lib)
808        + $(configure_lib)
809        + $(build_lib)
810        + $(install_lib)
811        + $(touch_lib)
812
813define clean_lib
814        $(RM) -r $(lib)
815endef
816define fetch_lib
817endef
818define configure_lib
819        $(MKDIR_P) $(lib)
820        cd $(lib); $(srcdir)/lib/configure $(lib_flags)
821endef
822define build_lib
823        $(MAKE)  -C $(lib) all
824endef
825define install_lib
826        $(MAKE) -C $(lib) install
827endef
828define touch_lib
829        touch $(lib)/timestamp
830endef
831
832$(lib)/timestamp:
833        + $(clean_lib)
834        + $(fetch_lib)
835        + $(configure_lib)
836        + $(build_lib)
837        + $(install_lib)
838        + $(touch_lib)
839
840# -------------------------------------------------------------------------
841#  OBJECTS
842# -------------------------------------------------------------------------
843
844objects_flags = \
845        --enable-shared \
846        $(common_flags)
847
848objects: $(objects)/timestamp
849
850clean-objects:
851        $(clean_objects)
852fetch-objects:
853        $(fetch_objects)
854configure-objects:
855        $(configure_objects)
856build-objects:
857        $(build_objects)
858install-objects:
859        $(install_objects)
860touch-objects:
861        $(touch_objects)
862force-objects:
863        + $(clean_objects)
864        + $(fetch_objects)
865        + $(configure_objects)
866        + $(build_objects)
867        + $(install_objects)
868        + $(touch_objects)
869
870define clean_objects
871        $(MAKE) -C $(objects) clean
872endef
873define fetch_objects
874endef
875define configure_objects
876endef
877define build_objects
878        $(MAKE) -C $(objects) all
879endef
880define install_objects
881        $(MAKE) -C $(objects) install
882endef
883define touch_objects
884        touch $(objects)/timestamp
885endef
886
887$(objects)/timestamp: $(lib)/timestamp $(itcl)/timestamp
888        + $(clean_objects)
889        + $(fetch_objects)
890        + $(configure_objects)
891        + $(build_objects)
892        + $(install_objects)
893        + $(touch_objects)
894
895
896
897# -------------------------------------------------------------------------
898#  OPTIMIZER
899# -------------------------------------------------------------------------
900
901optimizer_flags =       \
902        --with-tclsh="$(bindir)/tclsh8.5" \
903        --enable-shared \
904        --disable-threads \
905        $(common_flags)
906
907optimizer: $(optimizer)/timestamp
908
909clean-optimizer:
910        $(clean_optimizer)
911fetch-optimizer:
912        $(fetch_optimizer)
913configure-optimizer:
914        $(configure_optimizer)
915build-optimizer:
916        $(build_optimizer)
917install-optimizer:
918        $(install_optimizer)
919touch-optimizer:
920        $(touch_optimizer)
921force-optimizer: $(gui)/timestamp
922        + $(clean_optimizer)
923        + $(fetch_optimizer)
924        + $(configure_optimizer)
925        + $(build_optimizer)
926        + $(install_optimizer)
927        + $(touch_optimizer)
928
929define clean_optimizer
930        $(RM) -r $(optimizer)
931endef
932define fetch_optimizer
933endef
934define configure_optimizer
935        $(MKDIR_P) $(optimizer)
936        cd $(optimizer); $(srcdir)/packages/$(optimizer)/configure $(optimizer_flags)
937endef
938define build_optimizer
939        $(MAKE) -C $(optimizer) all
940endef
941define install_optimizer
942        $(MAKE) -C $(optimizer) install
943endef
944define touch_optimizer
945        touch $(optimizer)/timestamp
946endef
947
948$(optimizer)/timestamp: $(gui)/timestamp
949        + $(clean_optimizer)
950        + $(fetch_optimizer)
951        + $(configure_optimizer)
952        + $(build_optimizer)
953        + $(install_optimizer)
954        + $(touch_optimizer)
955
956# -------------------------------------------------------------------------
957#  RUNNER
958# -------------------------------------------------------------------------
959
960runner_flags =  \
961        --enable-shared \
962        $(common_flags)
963
964runner: $(runner)/timestamp
965
966clean-runner:
967        $(clean_runner)
968fetch-runner:
969        $(fetch_runner)
970configure-runner:
971        $(configure_runner)
972build-runner:
973        $(build_runner)
974install-runner:
975        $(install_runner)
976touch-runner:
977        $(touch_runner)
978force-runner:
979        + $(clean_runner)
980        + $(fetch_runner)
981        + $(configure_runner)
982        + $(build_runner)
983        + $(install_runner)
984        + $(touch_runner)
985
986define clean_runner
987        $(MAKE) -C $(runner) clean
988endef
989define fetch_runner
990endef
991define configure_runner
992endef
993define build_runner
994        $(MAKE) -C $(runner) all
995endef
996define install_runner
997        $(MAKE) -C $(runner) install
998endef
999define touch_runner
1000        touch $(runner)/timestamp
1001endef
1002
1003$(runner)/timestamp: $(lib)/timestamp $(itcl)/timestamp $(gui)/timestamp
1004        + $(clean_runner)
1005        + $(fetch_runner)
1006        + $(configure_runner)
1007        + $(build_runner)
1008        + $(install_runner)
1009        + $(touch_runner)
1010
1011
1012# -------------------------------------------------------------------------
1013#  SHAPE
1014# -------------------------------------------------------------------------
1015
1016shape_flags =   \
1017        --enable-shared \
1018        --with-tclconf=$(libdir) \
1019        --with-tkconf=$(libdir) \
1020        $(common_flags)
1021
1022shape: $(shape)/timestamp
1023
1024clean-shape:
1025        $(clean_shape)
1026fetch-shape:
1027        $(fetch_shape)
1028configure-shape:
1029        $(configure_shape)
1030build-shape:
1031        $(build_shape)
1032install-shape:
1033        $(install_shape)
1034touch-shape:
1035        $(touch_shape)
1036force-shape: $(tk)/timestamp
1037        + $(clean_shape)
1038        + $(fetch_shape)
1039        + $(configure_shape)
1040        + $(build_shape)
1041        + $(install_shape)
1042        + $(touch_shape)
1043
1044define clean_shape
1045        $(RM) -r $(shape)
1046endef
1047define fetch_shape
1048        sh $(srcdir)/fetch.sh $(TAG) $(runtime) $(shape)
1049endef
1050define configure_shape
1051        $(MKDIR_P) $(shape)
1052        cd $(shape); $(runtime)/$(shape)/unix/configure $(shape_flags)
1053endef
1054define build_shape
1055        $(MAKE) -C $(shape) all
1056endef
1057define install_shape
1058        $(MAKE) -C $(shape) install
1059endef
1060define touch_shape
1061        touch $(shape)/timestamp
1062endef
1063
1064$(shape)/timestamp: $(tk)/timestamp
1065        + $(clean_shape)
1066        + $(fetch_shape)
1067        + $(configure_shape)
1068        + $(build_shape)
1069        + $(install_shape)
1070        + $(touch_shape)
1071
1072# -------------------------------------------------------------------------
1073#  SQLITETCL
1074# -------------------------------------------------------------------------
1075
1076sqlitetcl_flags = \
1077        --enable-shared \
1078        $(common_flags)
1079
1080sqlitetcl: $(sqlitetcl)/timestamp
1081
1082clean-sqlitetcl:
1083        $(clean_sqlitetcl)
1084fetch-sqlitetcl:
1085        $(fetch_sqlitetcl)
1086configure-sqlitetcl:
1087        $(configure_sqlitetcl)
1088build-sqlitetcl:
1089        $(build_sqlitetcl)
1090install-sqlitetcl:
1091        $(install_sqlitetcl)
1092touch-sqlitetcl:
1093        $(touch_sqlitetcl)
1094force-sqlitetcl: $(tcl)/timestamp
1095        + $(clean_sqlitetcl)
1096        + $(fetch_sqlitetcl)
1097        + $(configure_sqlitetcl)
1098        + $(build_sqlitetcl)
1099        + $(install_sqlitetcl)
1100        + $(touch_sqlitetcl)
1101
1102define clean_sqlitetcl
1103        $(RM) -r $(sqlitetcl)
1104endef
1105define fetch_sqlitetcl
1106        sh $(srcdir)/fetch.sh $(TAG) $(runtime) $(sqlitetcl)
1107endef
1108define configure_sqlitetcl
1109        $(MKDIR_P) $(sqlitetcl)
1110        cd $(sqlitetcl); $(runtime)/$(sqlitetcl)/tea/configure $(sqlitetcl_flags)
1111endef
1112define build_sqlitetcl
1113        $(MAKE) -C $(sqlitetcl) all
1114endef
1115define install_sqlitetcl
1116        $(MAKE) -C $(sqlitetcl) install
1117endef
1118define touch_sqlitetcl
1119        touch $(sqlitetcl)/timestamp
1120endef
1121
1122$(sqlitetcl)/timestamp: $(tcl)/timestamp
1123        + $(clean_sqlitetcl)
1124        + $(fetch_sqlitetcl)
1125        + $(configure_sqlitetcl)
1126        + $(build_sqlitetcl)
1127        + $(install_sqlitetcl)
1128        + $(touch_sqlitetcl)
1129
1130# -------------------------------------------------------------------------
1131#  TCL
1132# -------------------------------------------------------------------------
1133
1134tcl_flags =     \
1135        --enable-shared \
1136        --disable-threads \
1137        $(common_flags)
1138
1139tcl: $(tcl)/timestamp
1140
1141clean-tcl:
1142        $(clean_tcl)
1143fetch-tcl:
1144        $(fetch_tcl)
1145configure-tcl:
1146        $(configure_tcl)
1147build-tcl:
1148        $(build_tcl)
1149install-tcl:
1150        $(install_tcl)
1151touch-tcl:
1152        $(touch_tcl)
1153force-tcl:
1154        + $(clean_tcl)
1155        + $(fetch_tcl)
1156        + $(configure_tcl)
1157        + $(build_tcl)
1158        + $(install_tcl)
1159        + $(touch_tcl)
1160
1161define fetch_tcl
1162        sh $(srcdir)/fetch.sh $(TAG) $(srcdir) $(tcl)
1163endef
1164define clean_tcl
1165        $(RM) -r $(tcl)
1166endef
1167define fetch_tcl
1168        sh $(srcdir)/fetch.sh $(TAG) $(runtime) $(tcl)
1169endef
1170define configure_tcl
1171        $(MKDIR_P) $(tcl)
1172        cd $(tcl); $(srcdir)/runtime/$(tcl)/unix/configure $(tcl_flags)
1173endef
1174define build_tcl
1175        $(MAKE)  -C $(tcl) all
1176endef
1177define install_tcl
1178        $(MAKE) -C $(tcl) install
1179        $(RM) $(bindir)/tclsh
1180        (cd $(bindir); $(LN_S) tclsh$(TCL_VERSION) tclsh)
1181endef
1182define touch_tcl
1183        touch $(tcl)/timestamp
1184endef
1185
1186$(tcl)/timestamp:
1187        + $(clean_tcl)
1188        + $(fetch_tcl)
1189        + $(configure_tcl)
1190        + $(build_tcl)
1191        + $(install_tcl)
1192        + $(touch_tcl)
1193
1194# -------------------------------------------------------------------------
1195#  TCLLIB
1196# -------------------------------------------------------------------------
1197
1198tcllib_flags =  \
1199        --enable-shared \
1200        $(common_flags)
1201
1202tcllib: $(tcllib)/timestamp
1203
1204clean-tcllib:
1205        $(clean_tcllib)
1206fetch-tcllib:
1207        $(fetch_tcllib)
1208configure-tcllib:
1209        $(configure_tcllib)
1210build-tcllib:
1211        $(build_tcllib)
1212install-tcllib:
1213        $(install_tcllib)
1214touch-tcllib:
1215        $(touch_tcllib)
1216force-tcllib: $(tcl)/timestamp
1217        + $(clean_tcllib)
1218        + $(fetch_tcllib)
1219        + $(configure_tcllib)
1220        + $(build_tcllib)
1221        + $(install_tcllib)
1222        + $(touch_tcllib)
1223
1224define clean_tcllib
1225        $(RM) -r $(tcllib)
1226endef
1227define fetch_tcllib
1228        sh $(srcdir)/fetch.sh $(TAG) $(runtime) $(tcllib)
1229endef
1230define configure_tcllib
1231        $(MKDIR_P) $(tcllib)
1232        cd $(tcllib); $(runtime)/$(tcllib)/configure $(tcllib_flags)
1233endef
1234define build_tcllib
1235        $(MAKE) -C $(tcllib) all
1236endef
1237define install_tcllib
1238        $(MAKE) -C $(tcllib) install
1239endef
1240define touch_tcllib
1241        touch $(tcllib)/timestamp
1242endef
1243
1244$(tcllib)/timestamp: $(tcl)/timestamp
1245        + $(clean_tcllib)
1246        + $(fetch_tcllib)
1247        + $(configure_tcllib)
1248        + $(build_tcllib)
1249        + $(install_tcllib)
1250        + $(touch_tcllib)
1251
1252# -------------------------------------------------------------------------
1253#  TDOM
1254# -------------------------------------------------------------------------
1255
1256tdom_flags =    \
1257        --enable-shared \
1258        $(common_flags)
1259
1260tdom: $(tdom)/timestamp
1261
1262clean-tdom:
1263        $(clean_tdom)
1264fetch-tdom:
1265        $(fetch_tdom)
1266configure-tdom:
1267        $(configure_tdom)
1268build-tdom:
1269        $(build_tdom)
1270install-tdom:
1271        $(install_tdom)
1272touch-tdom:
1273        $(touch_tdom)
1274force-tdom: $(tcl)/timestamp
1275        + $(clean_tdom)
1276        + $(fetch_tdom)
1277        + $(configure_tdom)
1278        + $(build_tdom)
1279        + $(install_tdom)
1280        + $(touch_tdom)
1281
1282define clean_tdom
1283        $(RM) -r $(tdom)
1284endef
1285define fetch_tdom
1286        sh $(srcdir)/fetch.sh $(TAG) $(runtime) $(tdom)
1287endef
1288define configure_tdom
1289        $(MKDIR_P) $(tdom)
1290        cd $(tdom); $(runtime)/$(tdom)/configure $(tdom_flags)
1291endef
1292define build_tdom
1293        $(MAKE) -C $(tdom) all
1294endef
1295define install_tdom
1296        $(MAKE) -C $(tdom) install
1297endef
1298define touch_tdom
1299        touch $(tdom)/timestamp
1300endef
1301
1302$(tdom)/timestamp: $(tcl)/timestamp
1303        + $(clean_tdom)
1304        + $(fetch_tdom)
1305        + $(configure_tdom)
1306        + $(build_tdom)
1307        + $(install_tdom)
1308        + $(touch_tdom)
1309
1310# -------------------------------------------------------------------------
1311#  TESTER
1312# -------------------------------------------------------------------------
1313
1314tester_flags =  \
1315        --with-tclsh="$(bindir)/tclsh8.4" \
1316        --enable-shared \
1317        $(common_flags)
1318
1319tester: $(tester)/timestamp
1320
1321clean-tester:
1322        $(clean_tester)
1323fetch-tester:
1324        $(fetch_tester)
1325configure-tester:
1326        $(configure_tester)
1327build-tester:
1328        $(build_tester)
1329install-tester:
1330        $(install_tester)
1331touch-tester:
1332        $(touch_tester)
1333force-tester: $(gui)/timestamp
1334        + $(clean_tester)
1335        + $(fetch_tester)
1336        + $(configure_tester)
1337        + $(build_tester)
1338        + $(install_tester)
1339        + $(touch_tester)
1340
1341define clean_tester
1342        $(MAKE) -C $(tester) clean
1343endef
1344define fetch_tester
1345endef
1346define configure_tester
1347endef
1348define build_tester
1349        $(MAKE) -C $(tester) all
1350endef
1351define install_tester
1352        $(MAKE) -C $(tester) install
1353endef
1354define touch_tester
1355        touch $(tester)/timestamp
1356endef
1357
1358$(tester)/timestamp: $(gui)/timestamp
1359        + $(clean_tester)
1360        + $(fetch_tester)
1361        + $(configure_tester)
1362        + $(build_tester)
1363        + $(install_tester)
1364        + $(touch_tester)
1365
1366# -------------------------------------------------------------------------
1367#  TK
1368# -------------------------------------------------------------------------
1369
1370tk_flags =      \
1371        --enable-shared \
1372        --disable-threads \
1373        $(common_flags)
1374
1375tk: $(tk)/timestamp
1376
1377clean-tk:
1378        $(clean_tk)
1379fetch-tk:
1380        $(fetch_tk)
1381configure-tk:
1382        $(configure_tk)
1383build-tk:
1384        $(build_tk)
1385install-tk:
1386        $(install_tk)
1387touch-tk:
1388        $(touch_tk)
1389force-tk: $(tcl)/timestamp
1390        + $(clean_tk)
1391        + $(fetch_tk)
1392        + $(configure_tk)
1393        + $(build_tk)
1394        + $(install_tk)
1395        + $(touch_tk)
1396
1397define clean_tk
1398        $(RM) -r $(tk)
1399endef
1400define fetch_tk
1401        sh $(srcdir)/fetch.sh $(TAG) $(runtime) $(tk)
1402endef
1403define configure_tk
1404        $(MKDIR_P) $(tk)
1405        cd $(tk); $(runtime)/$(tk)/unix/configure $(tk_flags)
1406endef
1407define build_tk
1408        $(MAKE)  -C $(tk) all
1409endef
1410define install_tk
1411        $(MAKE) -C $(tk) install
1412        $(RM) $(bindir)/wish
1413        (cd $(bindir); $(LN_S) wish$(TK_VERSION) wish)
1414endef
1415define touch_tk
1416        touch $(tk)/timestamp
1417endef
1418
1419$(tk)/timestamp: $(tcl)/timestamp
1420        + $(clean_tk)
1421        + $(fetch_tk)
1422        + $(configure_tk)
1423        + $(build_tk)
1424        + $(install_tk)
1425        + $(touch_tk)
1426
1427# -------------------------------------------------------------------------
1428#  TKING
1429# -------------------------------------------------------------------------
1430
1431tkimg_flags =   \
1432        --enable-shared \
1433        $(common_flags)
1434
1435tkimg: $(tkimg)/timestamp
1436
1437clean-tkimg:
1438        $(clean_tkimg)
1439fetch-tkimg:
1440        $(fetch_tkimg)
1441configure-tkimg:
1442        $(configure_tkimg)
1443build-tkimg:
1444        $(build_tkimg)
1445install-tkimg:
1446        $(install_tkimg)
1447touch-tkimg:
1448        $(touch_tkimg)
1449force-tkimg: $(tk)/timestamp
1450        + $(clean_tkimg)
1451        + $(fetch_tkimg)
1452        + $(configure_tkimg)
1453        + $(build_tkimg)
1454        + $(install_tkimg)
1455        + $(touch_tkimg)
1456
1457define clean_tkimg
1458        $(RM) -r $(tkimg)
1459endef
1460define fetch_tkimg
1461        sh $(srcdir)/fetch.sh $(TAG) $(runtime) $(tkimg)
1462endef
1463define configure_tkimg
1464        $(MKDIR_P) $(tkimg)
1465        cd $(tkimg); $(runtime)/$(tkimg)/configure $(tkimg_flags)
1466endef
1467define build_tkimg
1468        $(MAKE) -C $(tkimg) all
1469endef
1470define install_tkimg
1471        $(MAKE) -C $(tkimg) install
1472endef
1473define touch_tkimg
1474        touch $(tkimg)/timestamp
1475endef
1476
1477$(tkimg)/timestamp: $(tk)/timestamp
1478        + $(clean_tkimg)
1479        + $(fetch_tkimg)
1480        + $(configure_tkimg)
1481        + $(build_tkimg)
1482        + $(install_tkimg)
1483        + $(touch_tkimg)
1484
1485# -------------------------------------------------------------------------
1486#  TLS
1487# -------------------------------------------------------------------------
1488
1489tls_flags =     \
1490        --enable-shared \
1491        $(common_flags)
1492
1493tls: $(tls)/timestamp
1494
1495clean-tls:
1496        $(clean_tls)
1497fetch-tls:
1498        $(fetch_tls)
1499configure-tls:
1500        $(configure_tls)
1501build-tls:
1502        $(build_tls)
1503install-tls:
1504        $(install_tls)
1505touch-tls:
1506        $(touch_tls)
1507force-tls: $(tcl)/timestamp
1508        + $(clean_tls)
1509        + $(fetch_tls)
1510        + $(configure_tls)
1511        + $(build_tls)
1512        + $(install_tls)
1513        + $(touch_tls)
1514
1515define clean_tls
1516        $(RM) -r $(tls)
1517endef
1518define fetch_tls
1519        sh $(srcdir)/fetch.sh $(TAG) $(runtime) $(tls)
1520endef
1521define configure_tls
1522        $(MKDIR_P) $(tls)
1523        cd $(tls); $(runtime)/$(tls)/configure $(tls_flags)
1524endef
1525define build_tls
1526        $(MAKE) -C $(tls) all
1527endef
1528define install_tls
1529        $(MAKE) -C $(tls) install
1530endef
1531define touch_tls
1532        touch $(tls)/timestamp
1533endef
1534
1535$(tls)/timestamp: $(tcl)/timestamp
1536        + $(clean_tls)
1537        + $(fetch_tls)
1538        + $(configure_tls)
1539        + $(build_tls)
1540        + $(install_tls)
1541        + $(touch_tls)
1542
1543# -------------------------------------------------------------------------
1544#  VIDEO
1545# -------------------------------------------------------------------------
1546
1547video_flags =   \
1548        --with-tclsh="$(bindir)/tclsh8.4" \
1549        --enable-shared \
1550        $(common_flags)
1551
1552video: $(video)/timestamp
1553
1554clean-video:
1555        $(clean_video)
1556fetch-video:
1557        $(fetch_video)
1558configure-video:
1559        $(configure_video)
1560build-video:
1561        $(build_video)
1562install-video:
1563        $(install_video)
1564touch-video:
1565        $(touch_video)
1566force-video: #$(gui)/timestamp
1567        + $(clean_video)
1568        + $(fetch_video)
1569        + $(configure_video)
1570        + $(build_video)
1571        + $(install_video)
1572        + $(touch_video)
1573
1574define clean_video
1575        $(RM) -r $(video)
1576endef
1577define fetch_video
1578endef
1579define configure_video
1580        $(MKDIR_P) $(video)
1581        cd $(video); $(srcdir)/packages/$(video)/configure $(video_flags)
1582endef
1583define build_video
1584        $(MAKE) -C $(video) all
1585endef
1586define install_video
1587        $(MAKE) -C $(video) install
1588endef
1589define touch_video
1590        touch $(video)/timestamp
1591endef
1592
1593$(video)/timestamp: $(gui)/timestamp
1594        + $(clean_video)
1595        + $(fetch_video)
1596        + $(configure_video)
1597        + $(build_video)
1598        + $(install_video)
1599        + $(touch_video)
1600
1601# -------------------------------------------------------------------------
1602#  VTK
1603# -------------------------------------------------------------------------
1604
1605vtk_flags =     \
1606        $(common_flags)
1607
1608vtk: $(vtk)/timestamp
1609
1610clean-vtk:
1611        $(clean_vtk)
1612fetch-vtk:
1613        $(fetch_vtk)
1614configure-vtk:
1615        $(configure_vtk)
1616build-vtk:
1617        $(build_vtk)
1618install-vtk:
1619        $(install_vtk)
1620touch-vtk:
1621        $(touch_vtk)
1622force-vtk: $(cmake)/timestamp $(tcl)/timestamp $(tk)/timestamp
1623        + $(clean_vtk)
1624        + $(fetch_vtk)
1625        + $(configure_vtk)
1626        + $(build_vtk)
1627        + $(install_vtk)
1628        + $(touch_vtk)
1629
1630define clean_vtk
1631        $(RM) -r $(vtk)
1632endef
1633define fetch_vtk
1634        sh $(srcdir)/fetch.sh $(TAG) $(runtime) $(vtk)
1635endef
1636define configure_vtk
1637        $(MKDIR_P) $(vtk)
1638        cd $(vtk); $(runtime)/$(vtk)/configure $(vtk_flags)
1639endef
1640define build_vtk
1641        $(MAKE)  -C $(vtk) all
1642endef
1643define install_vtk
1644        $(MAKE) -C $(vtk) install
1645        $(RM) $(includedir)/vtk
1646        (cd $(includedir); $(LN_S) vtk-$(VTK_VERSION) vtk)
1647        $(RM) $(libdir)/tcltk/vtk
1648        (cd $(libdir)/tcltk; $(LN_S) vtk-$(VTK_VERSION) vtk)
1649endef
1650define touch_vtk
1651        touch $(vtk)/timestamp
1652endef
1653
1654$(vtk)/timestamp: $(cmake)/timestamp $(tcl)/timestamp $(tk)/timestamp
1655        + $(clean_vtk)
1656        + $(fetch_vtk)
1657        + $(configure_vtk)
1658        + $(build_vtk)
1659        + $(install_vtk)
1660        + $(touch_vtk)
1661
1662# -------------------------------------------------------------------------
1663#  ZLIB
1664# -------------------------------------------------------------------------
1665
1666zlib_flags =    \
1667        --enable-shared \
1668        $(common_flags)
1669
1670zlib: $(zlib)/timestamp
1671
1672clean-zlib:
1673        $(clean_zlib)
1674fetch-zlib:
1675        $(fetch_zlib)
1676configure-zlib:
1677        $(configure_zlib)
1678build-zlib:
1679        $(build_zlib)
1680install-zlib:
1681        $(install_zlib)
1682touch-zlib:
1683        $(touch_zlib)
1684force-zlib:
1685        + $(clean_zlib)
1686        + $(fetch_zlib)
1687        + $(configure_zlib)
1688        + $(build_zlib)
1689        + $(install_zlib)
1690        + $(touch_zlib)
1691
1692define clean_zlib
1693        $(RM) -r $(zlib)
1694endef
1695define fetch_zlib
1696        sh $(srcdir)/fetch.sh $(TAG) $(runtime) $(zlib)
1697endef
1698define configure_zlib
1699        $(MKDIR_P) $(zlib)
1700        cd $(zlib); $(runtime)/$(zlib)/configure $(zlib_flags)
1701endef
1702define build_zlib
1703        $(MAKE) -C $(zlib) all
1704endef
1705define install_zlib
1706        $(MAKE) -C $(zlib) install
1707endef
1708define touch_zlib
1709        touch $(zlib)/timestamp
1710endef
1711
1712$(zlib)/timestamp:
1713        + $(clean_zlib)
1714        + $(fetch_zlib)
1715        + $(configure_zlib)
1716        + $(build_zlib)
1717        + $(install_zlib)
1718        + $(touch_zlib)
1719
Note: See TracBrowser for help on using the repository browser.