source: CMT/HEAD/mgr/requirements @ 348

Last change on this file since 348 was 348, checked in by garonne, 17 years ago

add private statement

  • Property svn:eol-style set to native
File size: 21.4 KB
Line 
1package CMT
2
3author arnault@lal.in2p3.fr
4
5tag CMTr15 CMTr14
6tag CMTr16 CMTr14
7tag CMTr18 CMTr16
8tag CMTr0  CMTr18
9
10#
11#  Automatic detection of some system features.
12#
13
14
15# Getting info on the hardware
16macro cmt_hardware_query_command "uname -m" \
17      Darwin "uname -p" \
18      SunOS "uname -p" \
19      HP-UX "uname -m | sed -e 's#/##g'"
20
21macro cmt_hardware `$(cmt_hardware_query_command)` WIN32 "WIN32"
22
23apply_tag $(cmt_hardware)
24
25
26# Getting info about the OS
27macro cmt_system_version_query_command "uname -r " \
28      Linux "${CMTROOT}/mgr/cmt_linux_version.sh" \
29      SunOS "uname -r | sed -e 's#^#sunos#'" \
30      OSF1  "uname -r | sed -e 's#^#OSF#'" \
31      Darwin "system_profiler -detailLevel -2 | grep 'System Version' | sed -e 's#[^.0-9 ]##g' -e 's#  *# #g' | cut -d ' ' -f2 | sed -e 's#^#mac#' " \
32      HP-UX "uname -r | sed -e 's#^#hpux#'" \
33      CYGWIN "uname -r | sed -e 's#[(].*##' -e 's#^#Cygwin#'" \
34      LynxOS "uname -r | sed -e 's#^#LynxOS#'"
35
36macro_append cmt_system_version_query_command " | ${CMTROOT}/mgr/cmt_filter_version.sh" \
37             WIN32 ""
38
39macro cmt_system_version   `$(cmt_system_version_query_command)`   WIN32 "XP"
40
41apply_tag $(cmt_system_version)
42
43
44# Getting info about the C++ compiler
45macro cmt_compiler_version_query_command "${CMTROOT}/mgr/cmt_gcc_version.sh | grep '^gcc'" \
46      Linux "${CMTROOT}/mgr/cmt_gcc_version.sh" \
47      SunOS "${CMTROOT}/mgr/cmt_CC_version.sh" \
48      OSF1  "${CMTROOT}/mgr/cmt_cxx_version.sh" \
49      Darwin "${CMTROOT}/mgr/cmt_dcc_version.sh" \
50      HP-UX "echo aCC" \
51      LynxOS "${CMTROOT}/mgr/cmt_gcc_version.sh"
52
53macro_append cmt_compiler_version_query_command " | ${CMTROOT}/mgr/cmt_filter3_version.sh" \
54             rhel3 " | ${CMTROOT}/mgr/cmt_filter3_version.sh" \
55             cel3  " | ${CMTROOT}/mgr/cmt_filter3_version.sh" \
56             WIN32 ""
57
58macro cmt_compiler_version `$(cmt_compiler_version_query_command)` WIN32 "cl"
59
60apply_tag $(cmt_compiler_version)
61
62tag OSF1           Unix
63tag Linux          Unix
64tag HP-UX          Unix
65tag Darwin         Unix
66tag LynxOS         Unix
67tag AIX            Unix
68tag SunOS          Unix
69
70tag CYGWIN_NT-5.1  Unix CYGWIN
71
72tag alpha          OSF1
73tag alpha_dux40    alpha
74tag alpha-debug    alpha debug
75
76tag LynxOS-VGPW2   LynxOS
77tag LynxOS-PowerPC LynxOS
78tag RIO806X        LynxOS
79tag VMTR2X         LynxOS
80
81tag hp9000s780     HP-UX
82tag hp9000s700     HP-UX
83tag hp700_ux101    HP-UX
84tag hp_ux102       HP-UX
85
86tag Linux-i686     Linux
87tag i386_redhat51  Linux
88tag i386_linux22   Linux
89
90tag rs_aix42       AIX
91
92tag sun4u          SunOS
93tag sun4x_57       SunOS
94
95tag rhel3          Linux
96tag cel3           Linux
97tag slc3           Linux
98
99# Alternate possible tags for VisualC
100tag VisualC        WIN32
101tag VisualC        Win32
102tag WIN32          VisualC
103
104# Some alternate definitions for debug on VisualC
105tag VisualCdbg     WIN32 windebug
106tag VisualD        WIN32 windebug
107tag VisualDbg      WIN32 windebug
108tag VisualDebug    WIN32 windebug
109tag VisualD        VisualC windebug
110tag VisualDbg      VisualC windebug
111tag Win32Debug     VisualC windebug
112
113# VSNET tags #
114tag VC7            vsnet
115tag VC7debug       vsnet windebug
116
117tag_exclude WIN32 Unix
118tag_exclude Win32 Unix
119
120#
121#  Global PATH variables management
122#
123
124path_remove  PATH      "CMT/v" \
125             WIN32     "CMT\v"
126
127path_prepend PATH      "${CMTROOT}/${CMTBIN}" \
128             WIN32     "%CMTROOT%\%CMTBIN%"
129
130path_remove  CLASSPATH  "CMT"
131path_append  CLASSPATH  "${CMTROOT}/java" \
132             WIN32      "%CMTROOT%\java"
133
134path_append include    ""
135path_append lib        ""
136
137macro debug_option "-g" \
138      SunOS        "-G" \
139      WIN32        "/G"
140
141#
142#  C environment
143#
144
145macro cc              "gcc" \
146      insure          "insure" \
147      alpha           "cc" \
148      alphat          "cc" \
149      HP-UX           "aCC" \
150      hp700_ux101     "gcc" \
151      AIX             "xlc" \
152      SunOS           "cc" \
153      VisualC         "cl.exe" \
154      Darwin          "cc"
155
156macro cdebugflags     "" \
157      debug           "$(debug_option)"
158
159macro cflags          "" \
160      LynxOS-VGPW2    "-X" \
161      insure          "-std1" \
162      HP-UX           "+Z" \
163      hp700_ux101     "-fpic -ansi" \
164      alpha           "-std1" \
165      alphat          "-std1" \
166      SunOS           "-KPIC" \
167      VisualC         '/nologo /DWIN32 /MD /W3 $(includes) /c'
168
169macro pp_cflags       "" \
170      LynxOS-VGPW2    "-DVGPW2" \
171      HP-UX           "-D_HPUX_SOURCE" \
172      alphat          "-DCTHREADS" \
173      AIX             "-D_ALL_SOURCE -D_BSD"
174
175macro ccomp           "$(cc) -c $(includes) $(cdebugflags) $(cflags) $(pp_cflags)" \
176      VisualC         "cl.exe $(cdebugflags) $(cflags) $(pp_cflags)"
177
178macro clinkflags      ""
179
180macro clink           "$(cc) $(clinkflags) $(cdebugflags)" \
181      VisualC         "link.exe /nologo /machine:IX86 "
182
183
184#
185#  Developper Studio environment
186#
187
188macro msdevdll          "" \
189      VisualC           "/dll"
190
191macro msdevdllflags   "" \
192      VisualC         '/MT /D "_USRDLL" /D "WDLL_EXPORTS"' \
193      VisualD         '/MTd /D "_USRDLL" /D "WDLL_EXPORTS"'
194
195macro vsCONFIG        "" \
196      VC7             "Release" \
197      VC7debug        "Debug"
198
199macro vsOptimize      "" \
200      VC7             "2" \
201      VC7debug        "0"
202
203
204#
205#  C++ environment
206#
207
208macro ppcmd           "-I" \
209      rs_aix41        "-WF,-I" \
210      VisualC         "/I "
211
212macro preproc         "g++ -MD -c " \
213      insure          "insure" \
214      alpha           "cxx" \
215      OSF1            "g++" \
216      HP-UX           "aCC" \
217      hp700_ux101     "g++" \
218      hp_ux102        "aCC" \
219      AIX             "xlC" \
220      Linux           "c++ -MD -c " \
221      SunOS           "CC" \
222      VisualC         "cl.exe" \
223      Darwin          "c++"
224
225macro cpp             "g++" \
226      insure          "insure" \
227      alpha           "cxx" \
228      OSF1            "g++" \
229      HP-UX           "aCC" \
230      hp700_ux101     "g++" \
231      hp_ux102        "aCC" \
232      AIX             "xlC" \
233      Linux           "c++" \
234      SunOS           "CC" \
235      VisualC         "cl.exe" \
236      Darwin          "c++"
237
238macro cppdebugflags   "" \
239      debug           "$(debug_option)"
240
241macro cppflags        "" \
242      alpha           "-nocompress -std arm -msg_quiet" \
243      OSF1            "-fpic" \
244      hp9000s780      "+Z" \
245      hp700_ux101     "-fpic" \
246      HP-UX           "+Z -Wc,-ansi_for_scope,on" \
247      hp_ux102        "-z +p -Wc,-ansi_for_scope,on +O2 +Onoinitcheck" \
248      Linux           "-pipe -ansi -pedantic -W -Wall -Wwrite-strings -Wpointer-arith -Woverloaded-virtual " \
249      SunOS           "-KPIC" \
250      VisualC         '/nologo /DWIN32 /MD /W3 $(includes) /c /EHsc'
251
252macro pp_cppflags     "" \
253      HP-UX           "-D_HPUX_SOURCE" \
254      Linux           "-D_GNU_SOURCE"
255
256macro cppcomp         "$(cpp) -c $(includes) $(cppdebugflags) $(cppflags) $(pp_cppflags)" \
257      VisualC         "cl.exe $(cppdebugflags) $(cppflags) $(pp_cppflags)"
258
259macro cpplinkflags    ""
260
261macro cpplink         "$(cpp) $(cpplinkflags) $(cppdebugflags)" \
262      VisualC         "link.exe /nologo /machine:I386"
263
264macro cpp_linkopts    "" \
265      OSF1            " -lstdc++ " \
266      alpha           " /usr/lib/cmplrs/cxx/libcxx.a -lcxxstd -lexc -lm " \
267      alphat          " /usr/lib/cmplrs/cxx/libcxx.a -lcxxstd -lexc -lm "
268
269#
270#  Fortran environment
271#
272
273macro for             "f77" \
274      HP-UX           "fort77" \
275      rs_aix41        "xlf" \
276      Linux           "g77"
277
278macro fflags          "$(debug_option)" \
279      VisualC         ""
280
281macro fcomp           "$(for) -c $(fincludes) $(fflags) $(pp_fflags)" \
282      VisualC         ""
283
284macro flink           "$(for) $(flinkflags)"
285
286#
287#  Java environment
288#
289
290macro javacomp        "javac -classpath $(src):$(CLASSPATH) "
291macro javacopy        "cp"    VisualC "copy"
292macro jar             "jar"
293
294#
295#  X11 environment
296#
297
298macro X11_cflags      "-I/usr/include" \
299      HP-UX           "-I/usr/include/X11R5" \
300      SunOS           "-I/usr/motif/usr/include" \
301      VisualC         ""
302
303macro Xm_cflags       "-I/usr/include" \
304      HP-UX           "-I/usr/include/Motif1.2" \
305      SunOS           "-I/usr/motif/usr/include" \
306      VisualC         ""
307
308####      hp9000s700      "/usr/lib/Motif1.2/libXm.sl /usr/lib/X11R5/libXt.sl /usr/lib/X11R5/libX11.sl"
309
310macro X_linkopts      ""\
311      alpha           "-lXm -lXmu -lXt -lXext -lX11 -ldnet_stub -lm -lots"\
312      OSF1            "-lXm -lXmu -lXt -lXext -lX11 -ldnet_stub -lm -lots"\
313      insure          "-lXm -lXmu -lXt -lXext -lX11 -ldnet_stub -lm -lots"\
314      HP-UX           "-L/usr/lib -lXm -L/usr/contrib/X11R6/lib -lXmu -lXt -lXext -lX11" \
315      SunOS           "-L/usr/motif/usr/lib -lXm -lXt -lX11 -lm"\
316      LynxOS          "-lXt -lX11 -lm"\
317      Linux           "-L/usr/X11R6/lib -lXm -lXt -lXext -lX11 -lm"\
318      RIO806X         "-lXm -lXt -lXext -lX11 -lm"\
319      VGPW2           "-lXm -lXt -lXext -lX11 -lm"\
320      m68k            "-lXm -lXt -lXext -lX11 -lm"\
321      IRIX            "/usr/lib/libXm.so /usr/lib/libXt.so /usr/lib/libX11.so -lm -lPW"\
322      AIX             "/usr/lib/libXm.a /usr/lib/libXt.a /usr/lib/libX11.a -lm" \
323      VisualC         ""
324
325#
326# Lex environment
327#
328
329macro lexflags        ""
330macro lex             "lex $(lexflags)" \
331      i686            "flex $(lexflags)"
332
333#
334# Yacc environment
335#
336
337macro yaccflags       " -l -d " \
338      VisualC         ""
339
340macro yacc            "yacc $(yaccflags)"
341
342#
343#  Archive environment
344#
345
346macro ar              "ar -clr" \
347      SunOS           "ar clr" \
348      VGPW2           "ar clr" \
349      m68k            "ar clr" \
350      LynxOS          "ar clr" \
351      RIO806X         "ar clr" \
352      Linux           "ar r" \
353      VisualC         "lib.exe /nologo "
354
355macro ranlib          "ranlib" \
356      SunOS           "ar ts" \
357      VGPW2           "ar ts" \
358      m68k            "ranlib" \
359      RIO806X         "ranlib" \
360      LynxOS          "ar ts" \
361      IRIX            "ar ts"
362
363macro make_shlib    "echo" \
364      HP-UX         "${CMTROOT}/mgr/cmt_make_shlib_common.sh extract" \
365      OSF1          "${CMTROOT}/mgr/cmt_make_shlib_common.sh noextract" \
366      Linux         "${CMTROOT}/mgr/cmt_make_shlib_common.sh extract" \
367      CYGWIN        "${CMTROOT}/mgr/cmt_make_shlib_common.sh extract" \
368      SunOS         "${CMTROOT}/mgr/cmt_make_shlib_common.sh extract" \
369      Darwin        "${CMTROOT}/mgr/cmt_make_shlib_common.sh extract" \
370      VisualC       "%CMTROOT%\mgr\cmt_make_shlib.bat"
371
372macro shlibsuffix   "" \
373      HP-UX         "sl" \
374      OSF1          "so" \
375      SunOS         "so" \
376      Linux         "so" \
377      CYGWIN        "dll" \
378      Darwin        "dylib" \
379      WIN32         "dll"
380
381macro shlibbuilder  "" \
382      HP-UX         "aCC" \
383      OSF1          "ld" \
384      SunOS         "CC" \
385      Linux         "g++" \
386      CYGWIN        "g++" \
387      Darwin        "c++"
388
389macro shlibflags    "" \
390      HP-UX         "-Wl,-a,shared -b +Z -q -Wl,+s -Wl,+vallcompatwarnings" \
391      OSF1          "-shared -expect_unresolved '*'" \
392      Linux         "-shared" \
393      CYGWIN        "-shared" \
394      SunOS         "$(debug_option)" \
395      VisualC       "" \
396      Darwin        "-dynamiclib -flat_namespace -undefined suppress "
397
398macro symlink       "/bin/ln -fs " \
399      VisualC       ""
400
401macro symunlink     "/bin/rm -f " \
402      VisualC       ""
403
404macro library_install_command "${symlink}" \
405      VisualC                 "copy "
406
407macro build_library_links  "$(cmtexe) build library_links -quiet -tag=$(tags)"
408macro remove_library_links "$(cmtexe) remove library_links -quiet -tag=$(tags)"
409
410#
411# Prototype and dependency generation
412#
413
414macro cmtexe             "${CMTROOT}/${CMTBIN}/cmt.exe" \
415      WIN32              "%CMTROOT%\%CMTBIN%\cmt.exe"
416
417##macro tags               "$(CMTEXTRATAGS)"
418
419macro build_prototype    "$(cmtexe) build prototype"
420macro build_dependencies "$(cmtexe) -quiet -tag=$(tags) build dependencies"
421macro build_triggers     "$(cmtexe) build triggers"
422
423macro implied_library_prefix "-l" \
424      LynxOS                 "$(<PACKAGE>ROOT)/$(bin)/lib"
425
426macro implied_library_suffix "" \
427      VisualC                ".lib" \
428      LynxOS                 ".a"
429
430#
431# Generic environments
432#
433
434macro SHELL           "/bin/sh" WIN32 "cmd"
435
436macro q               '"'
437macro src             "../src/" WIN32 "..\src\"
438macro doc             "../doc/" WIN32 "..\doc\"
439macro inc             "../src/" WIN32 "..\src\"
440macro mgr             "../mgr/" WIN32 "..\mgr\"
441##macro javabin         "../classes/"
442
443macro application_suffix ".exe"
444macro library_prefix "lib" WIN32 "" CYGWIN ""
445macro library_suffix ""
446
447macro lock_command "chmod -R a-w ../*" \   
448      VisualC      "attrib /S /D +R ..\*"
449
450macro unlock_command "chmod -R g+w ../*" \   
451      VisualC      "attrib /S /D -R ..\*"
452
453macro preprocessor_command "" \
454      VisualC              ""
455
456macro_append MAKEFLAGS " --no-print-directory "
457
458#macro_prepend constituents " configclean "
459
460#
461# Remote definitions
462#
463
464macro gmake_hosts "lx1 rsplus lxtest as7 dxplus ax7 hp2 aleph hp1 hpplus papou1-fe atlas"
465
466macro make_hosts  "virgo-control1 rio0a vmpc38a"
467
468macro everywhere  "hosts" \
469      LAL         "as7 lx1 virgo-control1 papou1-fe hp2 aleph hp1" \
470      LHCb        "lxtest hpplus dxplus rsplus" \
471      Atlas       "lxplus sundev" \
472      Cascina     "ax7 vmpc38a rio0a"
473
474
475#
476#  Fragments
477#
478
479make_fragment make_header
480make_fragment library_header
481make_fragment application_header
482make_fragment document_header
483make_fragment java_header
484make_fragment jar_header
485make_fragment protos_header
486make_fragment buildproto
487make_fragment library
488make_fragment library_no_share
489make_fragment application
490make_fragment jar
491make_fragment java
492make_fragment java_copy
493make_fragment cleanup_header
494make_fragment cleanup
495make_fragment cleanup_library
496make_fragment cleanup_application
497make_fragment cleanup_java
498make_fragment cleanup_objects
499
500make_fragment fortran
501make_fragment c
502make_fragment cpp
503make_fragment lex
504make_fragment yacc
505
506make_fragment fortran_library
507make_fragment c_library
508make_fragment cpp_library
509make_fragment lex_library
510make_fragment yacc_library
511
512make_fragment dsw_header
513make_fragment dsw_project
514make_fragment dsw_trailer
515make_fragment dsw_all_project_header
516make_fragment dsw_all_project_dependency
517make_fragment dsw_all_project_trailer
518
519make_fragment dsp_library_header
520make_fragment dsp_shared_library_header
521make_fragment dsp_application_header
522make_fragment dsp_windows_header
523make_fragment dsp_contents
524make_fragment dsp_trailer
525make_fragment dsp_all
526
527# vsnet fragments
528make_fragment vcproj_library_header
529make_fragment vcproj_application_header
530make_fragment vcproj_all
531make_fragment vcproj_trailer
532make_fragment vcproj_contents
533make_fragment vcproj_directory_header
534make_fragment vcproj_directory_trailer
535
536make_fragment sln_header
537make_fragment sln_project
538make_fragment sln_trailer
539make_fragment sln_project_config
540make_fragment sln_dependency_project
541
542make_fragment sln_dependency_header
543make_fragment sln_dependency_trailer
544
545#### all packages have same GUID, and the "all" project as well
546
547macro GUID_all     "" vsnet {DD1EDB1B-B098-44F8-8012-3039B5A56FEF}
548macro package_GUID "" vsnet {8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}
549
550make_fragment make_setup
551make_fragment make_setup_header
552
553make_fragment constituents_header
554make_fragment group
555make_fragment constituent
556make_fragment constituents_trailer
557
558make_fragment dependencies
559make_fragment dependencies_and_triggers
560
561make_fragment readme_header
562make_fragment readme
563make_fragment readme_doc
564make_fragment readme_use
565make_fragment readme_trailer
566
567make_fragment tex -header=tex_header -suffix=ps
568
569make_fragment check_application
570make_fragment check_java
571make_fragment check_application_header
572
573make_fragment application_launcher -header=application_launcher_header
574
575make_fragment install_includes -header=install_includes_header
576
577macro install_command "cp " \
578      WIN32           "xcopy /S /E /Y "
579
580macro uninstall_command "/bin/rm -f " \
581      WIN32             "del "
582
583macro cmt_installarea_command "ln -fs " \
584      WIN32                   "xcopy /S /E /Y "
585
586macro cmt_uninstallarea_command "/bin/rm -f " \
587      WIN32                     "del "
588
589macro cmt_install_area_command "$(cmt_installarea_command)"
590macro cmt_uninstall_area_command "$(cmt_uninstallarea_command)"
591
592macro cmt_install_action       "$(CMTROOT)/mgr/cmt_install_action.sh" \
593      WIN32                    "$(CMTROOT)\mgr\cmt_install_action.bat"
594
595macro cmt_installdir_action    "$(CMTROOT)/mgr/cmt_installdir_action.sh" \
596      WIN32                    "$(CMTROOT)\mgr\cmt_installdir_action.bat"
597
598macro cmt_uninstall_action     "$(CMTROOT)/mgr/cmt_uninstall_action.sh" \
599      WIN32                    "$(CMTROOT)\mgr\cmt_uninstall_action.bat"
600
601macro cmt_uninstalldir_action  "$(CMTROOT)/mgr/cmt_uninstalldir_action.sh" \
602      WIN32                    "$(CMTROOT)\mgr\cmt_uninstalldir_action.bat"
603
604macro cmt_installdir_excludes  "" WIN32 "$(CMTROOT)\mgr\cmt_installdir_excludes.txt"
605
606action make "gmake $(cmt_args)" Darwin "make $(cmt_args)" CYGWIN "make $(cmt_args)" WIN32 "nmake /f nmake $(cmt_args)"
607
608macro mkdir  "mkdir" \
609      LynxOS "mkdir -f"
610
611#-----------------------------------------------------------------
612# Generic copy facility
613#   It is customized through the parameter:
614#     install_dir="<path where to install the sources>"
615#
616make_fragment installer -header=installer_header
617
618
619#-----------------------------------------------------------------
620# Generic usage of the cmt expand model facility
621#   the fragment is customized through the following parameters:
622#    model="<model text string>"
623#    out="<output file name>"
624#
625make_fragment generator -header=generator_header
626
627#-----------------------------------------------------------------
628# Generic action runner
629#
630make_fragment cmt_action_runner -header=cmt_action_runner_header
631
632#
633# The supported languages
634#
635
636language fortran -suffix=f -suffix=F -preprocessor_command=$(ppcmd) -linker=$(flink)
637language c       -suffix=c -prototypes -linker=$(clink)
638language c++     -suffix=C -suffix=cc -suffix=cxx -suffix=cpp -fragment=cpp -linker=$(cpplink)
639language java    -suffix=java -linker=java
640language yacc    -suffix=y -prototypes -linker=$(clink)
641language lex     -suffix=l -prototypes -linker=$(clink)
642
643#
644# Protocol level for the CVS pluggin
645#
646
647macro cmt_cvs_protocol_level "v1r1"
648
649#
650# The CMTPATH patterns for installation areas
651#
652
653macro cmt_installarea_prefix "InstallArea"
654
655cmtpath_pattern \
656  macro cmt_installarea_paths        " $(cmt_installarea_prefix)/$(CMTCONFIG)/bin" ; \
657  macro_prepend use_linkopts         " $(cmt_installarea_linkopts) " ; \
658  macro_append shlibbuilder          " $(cmt_installarea_linkopts) "
659
660cmtpath_pattern \
661  macro_append cmt_installarea_paths "" <project>_with_installarea " $(<project>_installarea_prefix)/$(CMTCONFIG)/lib" ; \
662  macro_append cmt_installarea_paths "" <project>_with_installarea " $(<project>_installarea_prefix)/share/lib" ; \
663  macro_append cmt_installarea_paths "" <project>_with_installarea " $(<project>_installarea_prefix)/share/bin"
664 
665macro CMT_PATH_remove_regexp "/[^/]*/" WIN32 "\\[^\\]*\\"
666macro CMT_PATH_remove_share_regexp "/share/" WIN32 "\\share\\"
667
668cmtpath_pattern \
669  macro <project>_installarea_prefix "$(cmt_installarea_prefix)" ; \
670  macro <project>_installarea_prefix_remove "$(<project>_installarea_prefix)" ; \
671  path_remove_regexp PATH "" <project>_with_installarea "$(<project>_installarea_prefix_remove)$(CMT_PATH_remove_regexp)bin$" ; \
672  path_remove_regexp PATH "" <project>_with_installarea "$(<project>_installarea_prefix_remove)$(CMT_PATH_remove_regexp)lib$" ; \
673  path_remove_regexp LD_LIBRARY_PATH "" <project>_with_installarea "$(<project>_installarea_prefix_remove)/[^/]*/lib$"  ; \
674  path_remove_regexp CLASSPATH "" <project>_with_installarea "$(<project>_installarea_prefix_remove)$(CMT_PATH_remove_share_regexp)lib$" ; \
675  path_remove_regexp CLASSPATH "" <project>_with_installarea "$(<project>_installarea_prefix_remove)$(CMT_PATH_remove_share_regexp)bin$"
676
677cmtpath_pattern \
678  path_prepend PATH "" \
679               <project>_with_installarea&WIN32 "<path>/$(<project>_installarea_prefix)/${CMTCONFIG}/bin" \
680               <project>_with_installarea&Unix "<path>/$(<project>_installarea_prefix)/${CMTCONFIG}/bin" ; \
681  path_prepend PATH "" \
682               <project>_with_installarea&WIN32 "<path>/$(<project>_installarea_prefix)/${CMTCONFIG}/lib" \
683               <project>_with_installarea&CYGWIN "<path>/$(<project>_installarea_prefix)/${CMTCONFIG}/lib" ; \
684  path_prepend LD_LIBRARY_PATH "" \
685               <project>_with_installarea&Unix "<path>/$(<project>_installarea_prefix)/${CMTCONFIG}/lib" ; \
686  macro_prepend cmt_installarea_linkopts "" \
687                <project>_without_installarea "" \
688                <project>_with_installarea&Unix " -L<path>/$(<project>_installarea_prefix)/$(CMTCONFIG)/lib " \
689                <project>_with_installarea&WIN32 " /LIBPATH:<path>\$(<project>_installarea_prefix)\$(CMTCONFIG)\lib "                 
690   
691set NEWCMTCONFIG "${cmt_hardware}-${cmt_system_version}-${cmt_compiler_version}"
692
693#
694# The cmt constituent
695#
696
697application cmt -s=../source cmt.cxx \
698cmt_awk.cxx \
699cmt_branch.cxx \
700cmt_constituent.cxx \
701cmt_deps_builder.cxx \
702cmt_fragment.cxx \
703cmt_generator.cxx \
704cmt_include.cxx \
705cmt_parser.cxx \
706cmt_script.cxx \
707cmt_string.cxx \
708cmt_system.cxx \
709cmt_tag.cxx \
710cmt_use.cxx \
711cmt_symbol.cxx \
712cmt_error.cxx \
713cmt_pattern.cxx \
714cmt_language.cxx \
715cmt_cvs.cxx \
716cmt_group.cxx \
717cmt_database.cxx \
718cmt_lock.cxx \
719cmt_triggers.cxx \
720cmt_regexp.cxx \
721cmt_model.cxx \
722cmt_project.cxx \
723cmt_syntax.cxx \
724cmt_install_area.cxx \
725cmt_cmtpath_pattern.cxx \
726cmt_sequence.cxx \
727cmt_generators.cxx \
728cmt_scope_section.cxx \
729cmt_log.cxx \
730cmt_commands.cxx
731
732private
733
734macro all_constituents cmt
735
736macro_append cpplink "" VisualC " advapi32.lib "
Note: See TracBrowser for help on using the repository browser.