Changeset 2002 in Sophya for trunk/SophyaLib/Mgr/mkmflib


Ignore:
Timestamp:
May 14, 2002, 5:14:47 PM (23 years ago)
Author:
ansari
Message:

Correction pb mkmflib , remplacement ls par ls -1 - Reza 14/5/2002

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/Mgr/mkmflib

    r1797 r2002  
    11#!/bin/csh
    2 # $Id: mkmflib,v 1.10 2001-11-27 21:19:36 aubourg Exp $
     2# $Id: mkmflib,v 1.11 2002-05-14 15:14:47 ansari Exp $
    33
    44cd ../$1
     
    1919rm -f $liblist
    2020touch $liblist
    21 ls *.{c,cc} | comm -3 -1 $TMPDIR/exclude.sort - | sed -e 's/\.cc/.o/' | sed -e 's/\.c/.o/' >> $liblist
     21ls -1 *.{c,cc} | comm -3 -1 $TMPDIR/exclude.sort - | sed -e 's/\.cc/.o/' | sed -e 's/\.c/.o/' >> $liblist
    2222unset liblist
    2323
     
    5656
    5757echo $libf ':' \
    58  `ls *.{c,cc} | comm -3 -1 $TMPDIR/exclude.sort - | sed -e 's/\.cc/.o/' | sed -e 's/\.c/.o/' | sed -e 's/^/$(OBJ)/'` >> GNUmakefile
     58 `ls -1 *.{c,cc} | comm -3 -1 $TMPDIR/exclude.sort - | sed -e 's/\.cc/.o/' | sed -e 's/\.c/.o/' | sed -e 's/^/$(OBJ)/'` >> GNUmakefile
    5959echo '  $(ARCXX) $(ARCXXFLAGS) $@ $($(ARARGS))' >> GNUmakefile
    6060#  Pour faire compiler les instantiations automatique de cxx (DEC)
Note: See TracChangeset for help on using the changeset viewer.