Ignore:
Timestamp:
02/08/16 14:01:55 (8 years ago)
Author:
eberhartp
Message:

Mise à jour grammaire pour support module linéaire
Mise à jour makefile pour utilisation C++11 (C++14 incompatible)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/yao/share/antlr-2.7.7/lib/cpp/Makefile

    r611 r645  
    1212## helper utilities .. 
    1313INSTALL         = /usr/bin/install -c 
    14 MKDIR           = /bin/mkdir 
    15 RM              = /bin/rm -r -f 
    16 RMF             = /bin/rm -r -f 
    17 TAR             = /bin/tar 
     14MKDIR           = /usr/bin/mkdir 
     15RM              = /usr/bin/rm -r -f 
     16RMF             = /usr/bin/rm -r -f 
     17TAR             = /usr/bin/tar 
    1818TOUCH           = /bin/touch 
    19 CHMOD           = /bin/chmod 
    20 SED             = /bin/sed 
    21 GREP            = /bin/grep 
    22 CAT             = /bin/cat 
    23 CHMOD           = /bin/chmod 
     19CHMOD           = /usr/bin/chmod 
     20SED             = /usr/bin/sed 
     21GREP            = /usr/bin/grep 
     22CAT             = /usr/bin/cat 
     23CHMOD           = /usr/bin/chmod 
    2424CP              = /bin/cp 
    2525ECHO            = /bin/echo 
     
    6363 
    6464# navigation  
    65 builddir        = /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7 
    66 buildtree       = /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7 
    67 sourcetree      = /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/.. 
     65builddir        = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 
     66buildtree       = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 
     67sourcetree      = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/.. 
    6868 
    6969## Two abbrevs to shorten things. $(thisdir) shall be the current 
     
    7171## source dir companion. That means that  $(thisdir)/Makefile has 
    7272## been generated by $(_srcdir)/Makefile.in. 
    73 _srcdir         = /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/../$(subdir) 
    74 thisdir         = /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/$(subdir) 
     73_srcdir         = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../$(subdir) 
     74thisdir         = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/$(subdir) 
    7575 
    7676# variable 'srcdir' is deprecated - use sourcetree 
    77 srcdir          = /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/.. 
     77srcdir          = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/.. 
    7878# variable 'objdir' is deprecated - use buildtree 
    79 objdir          = /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7 
     79objdir          = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 
    8080 
    8181# other 
     
    8585SUBDIRS_NOT    := . 
    8686 
    87 CLR            =  
    88  
    89 ANTLR_JAR      = /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/antlr/antlr.jar 
    90 ANTLR_LIB      = /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/lib/cpp/src/libantlr.a 
    91 ANTLR_NET      = /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/lib/antlr.runtime.dll 
    92 ANTLR_PY       = /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/lib/python/antlr/python.py 
    93 ASTFRAME_NET   = /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/lib/antlr.astframe.dll 
     87CLR            = /usr/bin/mono 
     88 
     89ANTLR_JAR      = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/antlr/antlr.jar 
     90ANTLR_LIB      = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/lib/cpp/src/libantlr.a 
     91ANTLR_NET      = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/lib/antlr.runtime.dll 
     92ANTLR_PY       = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/lib/python/antlr/python.py 
     93ASTFRAME_NET   = /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/lib/antlr.astframe.dll 
    9494 
    9595antlr_jar      = antlr.jar 
     
    210210.SUFFIXES: 
    211211 
    212 Makefile :: /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/../$(subdir)/Makefile.in  \ 
    213             /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/config.deps \ 
    214                                           /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/config.make \ 
    215                                           /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/config.vars \ 
    216             /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/config.status 
     212Makefile :: /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../$(subdir)/Makefile.in  \ 
     213            /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/config.deps \ 
     214                                          /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/config.make \ 
     215                                          /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/config.vars \ 
     216            /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/config.status 
    217217        @echo "*** update $(subdir)/Makefile" 
    218         @cd /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7 && CONFIG_FILES="$(subdir)/Makefile" /bin/bash ./config.status -q 
    219  
    220 /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/config.deps : \ 
    221         /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/../scripts/config.deps.in 
    222         @echo "*** update $@" 
    223         @cd /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/config.deps /bin/bash ./config.status -q 
    224  
    225 /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/config.make : \ 
    226         /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/../scripts/config.make.in 
    227         @echo "*** update $@" 
    228         @cd /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/config.make /bin/bash ./config.status -q 
    229  
    230 /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/config.vars : \ 
    231         /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/../scripts/config.vars.in 
    232         @echo "*** update $@" 
    233         @cd /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/config.vars /bin/bash ./config.status -q 
    234  
    235 /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/config.status : \ 
    236         /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/../configure 
     218        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES="$(subdir)/Makefile" /bin/sh ./config.status -q 
     219 
     220/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/config.deps : \ 
     221        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/config.deps.in 
     222        @echo "*** update $@" 
     223        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/config.deps /bin/sh ./config.status -q 
     224 
     225/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/config.make : \ 
     226        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/config.make.in 
     227        @echo "*** update $@" 
     228        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/config.make /bin/sh ./config.status -q 
     229 
     230/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/config.vars : \ 
     231        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/config.vars.in 
     232        @echo "*** update $@" 
     233        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/config.vars /bin/sh ./config.status -q 
     234 
     235/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/config.status : \ 
     236        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../configure 
    237237        @echo "*** reconfigure $@ - stay tuned .." 
    238         @cd /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7 && /bin/bash ./config.status -q --recheck 
     238        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && /bin/sh ./config.status -q --recheck 
    239239        @echo "*** update all configured files .." 
    240         @cd /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7 && /bin/bash ./config.status -q 
     240        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && /bin/sh ./config.status -q 
    241241 
    242242### In a pure devel mode there should be also a dependency listed on how 
     
    248248### 
    249249 
    250 /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/antlr.sh : \ 
    251         /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/../scripts/antlr.sh.in 
    252         @echo "*** update $@" 
    253         @cd /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/antlr.sh /bin/bash ./config.status -q 
    254  
    255 /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/cpp.sh : \ 
    256         /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/../scripts/cpp.sh.in 
    257         @echo "*** update $@" 
    258         @cd /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/cpp.sh /bin/bash ./config.status -q 
    259  
    260 /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/csc.sh : \ 
    261         /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/../scripts/csc.sh.in 
    262         @echo "*** update $@" 
    263         @cd /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/csc.sh /bin/bash ./config.status -q 
    264  
    265 /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/cxx.sh : \ 
    266         /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/../scripts/cxx.sh.in 
    267         @echo "*** update $@" 
    268         @cd /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/cxx.sh /bin/bash ./config.status -q 
    269  
    270 /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/jar.sh : \ 
    271         /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/../scripts/jar.sh.in 
    272         @echo "*** update $@" 
    273         @cd /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/jar.sh /bin/bash ./config.status -q 
    274  
    275 /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/javac.sh : \ 
    276         /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/../scripts/javac.sh.in 
    277         @echo "*** update $@" 
    278         @cd /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/javac.sh /bin/bash ./config.status -q 
    279  
    280 /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/java.sh : \ 
    281         /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/../scripts/java.sh.in 
    282         @echo "*** update $@" 
    283         @cd /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/java.sh /bin/bash ./config.status -q 
    284  
    285 /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/lib.sh : \ 
    286         /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/../scripts/lib.sh.in 
    287         @echo "*** update $@" 
    288         @cd /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/lib.sh /bin/bash ./config.status -q 
    289  
    290 /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/link.sh : \ 
    291         /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/../scripts/link.sh.in 
    292         @echo "*** update $@" 
    293         @cd /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/link.sh /bin/bash ./config.status -q 
    294  
    295 /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/pyinst.sh : \ 
    296         /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/../scripts/pyinst.sh.in 
    297         @echo "*** update $@" 
    298         @cd /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/pyinst.sh /bin/bash ./config.status -q 
    299  
    300 /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/python.sh : \ 
    301         /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/scripts/../scripts/python.sh.in 
    302         @echo "*** update $@" 
    303         @cd /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/python.sh /bin/bash ./config.status -q 
     250/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/antlr.sh : \ 
     251        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/antlr.sh.in 
     252        @echo "*** update $@" 
     253        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/antlr.sh /bin/sh ./config.status -q 
     254 
     255/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/cpp.sh : \ 
     256        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/cpp.sh.in 
     257        @echo "*** update $@" 
     258        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/cpp.sh /bin/sh ./config.status -q 
     259 
     260/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/csc.sh : \ 
     261        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/csc.sh.in 
     262        @echo "*** update $@" 
     263        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/csc.sh /bin/sh ./config.status -q 
     264 
     265/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/cxx.sh : \ 
     266        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/cxx.sh.in 
     267        @echo "*** update $@" 
     268        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/cxx.sh /bin/sh ./config.status -q 
     269 
     270/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/jar.sh : \ 
     271        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/jar.sh.in 
     272        @echo "*** update $@" 
     273        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/jar.sh /bin/sh ./config.status -q 
     274 
     275/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/javac.sh : \ 
     276        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/javac.sh.in 
     277        @echo "*** update $@" 
     278        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/javac.sh /bin/sh ./config.status -q 
     279 
     280/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/java.sh : \ 
     281        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/java.sh.in 
     282        @echo "*** update $@" 
     283        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/java.sh /bin/sh ./config.status -q 
     284 
     285/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/lib.sh : \ 
     286        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/lib.sh.in 
     287        @echo "*** update $@" 
     288        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/lib.sh /bin/sh ./config.status -q 
     289 
     290/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/link.sh : \ 
     291        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/link.sh.in 
     292        @echo "*** update $@" 
     293        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/link.sh /bin/sh ./config.status -q 
     294 
     295/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/pyinst.sh : \ 
     296        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/pyinst.sh.in 
     297        @echo "*** update $@" 
     298        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/pyinst.sh /bin/sh ./config.status -q 
     299 
     300/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/python.sh : \ 
     301        /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/scripts/../scripts/python.sh.in 
     302        @echo "*** update $@" 
     303        @cd /dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7 && CONFIG_FILES=scripts/python.sh /bin/sh ./config.status -q 
    304304 
    305305 
     
    312312## variable $(subdir) proper. 
    313313 
    314 /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/lib/antlr.runtime.dll ::  
     314/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/lib/antlr.runtime.dll ::  
    315315        @ subdir="lib/csharp/antlr.runtime" ; \ 
    316316    case $(subdir) in \ 
    317317          $$subdir ) ;; \ 
    318           * ) d="/home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/$$subdir" ; \ 
     318          * ) d="/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/$$subdir" ; \ 
    319319        test -f "$$d/Makefile" && {  \ 
    320320         /usr/bin/make -C "$$d" $@ ; \ 
     
    323323    esac 
    324324 
    325 /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/lib/antlr.astframe.dll ::  
     325/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/lib/antlr.astframe.dll ::  
    326326        @ subdir="lib/csharp/antlr.astframe" ; \ 
    327327    case $(subdir) in \ 
    328328          $$subdir ) ;; \ 
    329           * ) d="/home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/$$subdir" ; \ 
     329          * ) d="/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/$$subdir" ; \ 
    330330        test -f "$$d/Makefile" && {  \ 
    331331         /usr/bin/make -C "$$d" $@ ; \ 
     
    335335 
    336336 
    337 /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/antlr/antlr.jar :: 
     337/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/antlr/antlr.jar :: 
    338338        @ subdir="antlr" ; \ 
    339339    case $(subdir) in \ 
    340340          $$subdir ) ;; \ 
    341           * ) d="/home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/$$subdir" ; \ 
     341          * ) d="/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/$$subdir" ; \ 
    342342        test -f "$$d/Makefile" && {  \ 
    343343         /usr/bin/make -C "$$d" $@ ; \ 
     
    347347 
    348348 
    349 /home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/lib/cpp/src/libantlr.a :: 
     349/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/lib/cpp/src/libantlr.a :: 
    350350        @ subdir="lib/cpp/src" ; \ 
    351351    case $(subdir) in \ 
    352352          $$subdir ) ;; \ 
    353           * ) d="/home/data/LuigiNardi/yao/tmpThreeSubdomainForMerging/yao/share/antlr-2.7.7/$$subdir" ; \ 
     353          * ) d="/dsk/l1/eberhartp/YAO/trunk/yao/share/antlr-2.7.7/$$subdir" ; \ 
    354354        test -f "$$d/Makefile" && {  \ 
    355355         /usr/bin/make -C "$$d" $@ ; \ 
Note: See TracChangeset for help on using the changeset viewer.