source: Sophya/trunk/SophyaLib/BuildMgr/domkmf@ 4019

Last change on this file since 4019 was 3180, checked in by cmv, 19 years ago

modifs suite a la suppression de CodeMinuit et MinuitAdapt cmv 07/02/2007

  • Property svn:executable set to *
File size: 878 bytes
Line 
1#!/bin/csh
2# Script pour enchainer la fabrication des makefiles SOPHYA
3# Mettre les options de mkmflib comme argument
4
5# ---- Pour debugger
6# set DO = 'echo'
7set DO = ''
8
9echo " ==== Creation smakefile pour les modules SOPHYA ===="
10foreach f ( BaseTools SysTools SUtils TArray NTools HiStats SkyMap Samba SkyT )
11 set cmd = "./mkmflib $* $f"
12 $DO $cmd
13end
14
15echo " ==== Creation smakefile pour les modules EXTLIBS_SOPHYA ===="
16foreach f ( FitsIOServer IFFTW LinAlg XAstroPack )
17 set cmd = "./mkmflib $* $f"
18 $DO $cmd
19end
20
21echo " ==== Creation smakefile pour les modules PI ===="
22foreach f ( PI PIGcont PIext )
23 set cmd = "./mkmflib $* $f"
24 $DO $cmd
25end
26
27echo " ==== Creation smakefile pour les modules de Programmes ===="
28#foreach f ( ProgPI PrgUtil PrgMap Tests PMixer )
29foreach f ( ProgPI PrgUtil PrgMap PMixer )
30 set cmd = "./mkmfprog $* $f"
31 $DO $cmd
32end
Note: See TracBrowser for help on using the repository browser.