Skip to content

Instantly share code, notes, and snippets.

@CruzR
Created December 4, 2012 12:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CruzR/4203500 to your computer and use it in GitHub Desktop.
Save CruzR/4203500 to your computer and use it in GitHub Desktop.
LPC: Build script for BlobMobs
#!/bin/sh
javac -cp "$PWD/lib/*" `find $PWD/src -name '*.java'`
cd $PWD/src
jar cf ../BlobMobs.jar .
cd ..
#!/bin/sh
java -Djava.library.path=$PWD/resources/lwjgl-2.8.3/native/linux -cp "$PWD/lib/*:$PWD/BlobMobs.jar" Game
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment