-
Notifications
You must be signed in to change notification settings - Fork 499
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Travis revisited (still with astyle) and nicer makefile output (#80)
* Reorganize travis directory * Format astyle * correcting wrong filename * correcting the install script * Delete dSYM directories in Makefile * Source not bash * Cuter Makefile output * Correcting the script * bash functions needs to return numeric values * can use bash rather than source * Remove the return statement...
- Loading branch information
Showing
6 changed files
with
56 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
# | ||
# Install astyle on Linux | ||
# | ||
|
||
if [ ! -x "$(which astyle)" ]; then | ||
# Download astyle | ||
wget http://downloads.sourceforge.net/project/astyle/astyle/astyle%202.05.1/astyle_2.05.1_linux.tar.gz | ||
tar xzf astyle_2.05.1_linux.tar.gz | ||
cd astyle/build/gcc | ||
make | ||
fi; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters