Changeset 270

Show
Ignore:
Timestamp:
12/03/08 07:50:31 (1 month ago)
Author:
conrad
Message:

add sh3 CFLAGS, i3/b3 etc. aliases

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • home/bin/bsp

    r269 r270  
    3535  sudo ldconfig -v -r /export/MobileR2-BSP-current/rootfs_gentoo 
    3636} 
     37 
     38alias playdone1='play -q $HOME/share/gnome-audio-k1/generic.wav' 
     39alias playdone='playdone1 && playdone1 && playdone1' 
     40 
     41alias b3='build -a sh3 && playdone' 
     42alias i3='build -a sh3 install && migor-install && playdone' 
     43 
     44alias b4='build -a sh4 && playdone' 
     45alias i4='build -a sh4 install && mobiler2-install && playdone' 
  • home/bin/build

    r260 r270  
    126126      CROSS_DIR="$HOME/usr/share/gnush4-nofpu_linux_v0701-1" 
    127127      build_set_paths $CROSS_DIR 
     128      export CFLAGS="-I$HOME/usr-sh3/include $CFLAGS" 
    128129      export LDFLAGS="-L$HOME/usr-sh3/lib $LDFLAGS" 
    129130 
     
    308309  elif [ -e $builddir/Makefile -o -e $builddir/makefile -o \ 
    309310       -e Makefile -o -e makefile ] ; then 
    310     build_in_builddir $MAKE $* 
     311    build_in_builddir "$MAKE $*" 
    311312  fi 
    312313} 
     
    485486    build_make distcheck $* 
    486487    ;; 
    487   make*|*) 
     488  *) 
    488489    build_make $* 
    489490    ;;