Skip to content

Commit

Permalink
add svn:ignore and clean up
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.code.sf.net/p/x10/code/trunk@27394 a326200e-df2c-42e0-81fa-597e909af41d
  • Loading branch information
mtake committed Feb 8, 2014
1 parent ea50aee commit 052b03b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
10 changes: 3 additions & 7 deletions x10.gl/build.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
#!/bin/bash
#!/usr/bin/env bash

cd src-x10
find -print0 -name '*.x10' | xargs -0 jar cf ../x10_gl.jar
cd ..
(cd src-x10; find . -name '*.x10' -print0 | xargs -0 jar cf ../x10_gl.jar)

../x10.dist/bin/x10c++ -O -NO_CHECKS -STATIC_CHECKS -buildx10lib . src-x10/x10/gl/GL.x10 -o x10_gl -d include -cxx-postarg -lGL -cxx-postarg -lglut -cxx-postarg -lGLEW

cd include
find -name '*.cc' -print0 | xargs -0 rm
cd ..
(cd include; find . -name '*.cc' -print0 | xargs -0 rm)
2 changes: 1 addition & 1 deletion x10.gl/clean.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
#!/usr/bin/env bash

rm -rf lib/* include/* *.jar *.properties

0 comments on commit 052b03b

Please sign in to comment.