~ubuntu-branches/ubuntu/trusty/alliance/trusty

« back to all changes in this revision

Viewing changes to distrib/alliance-tutorials-go-all.sh

  • Committer: Package Import Robot
  • Author(s): Roland Stigge
  • Date: 2012-05-16 22:10:18 UTC
  • mfrom: (4.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20120516221018-n800ake8yf5g0an1
Tags: 5.0-20120515-1
* New upstream release
* Added 08-fix-libdir.patch - bad usage of configure's --libdir value,
  was FTBFS if other (binary) version of alliance was installed
* Adjusted 05-as-needed.patch - upstream changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
for B in place_and_route simulation synthesis
 
4
do
 
5
  if [ -d $B/src ]
 
6
  then echo "--- BENCH $B ----"
 
7
       (cd $B/src && make clean && make)
 
8
  fi
 
9
done