Skip to content

Commit

Permalink
Fixed Makefile/run script (issue #9)
Browse files Browse the repository at this point in the history
  • Loading branch information
BennyQBD committed Jul 12, 2015
1 parent cb1d9d4 commit 3165518
Show file tree
Hide file tree
Showing 69 changed files with 2 additions and 44 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

main:
javac -d bin -sourcepath src src/engine/Main.java
javac -cp lib/lwjgl.jar:. -d bin -sourcepath src src/engine/Main.java
28 changes: 0 additions & 28 deletions Unix-GitPush.sh

This file was deleted.

14 changes: 0 additions & 14 deletions appletIndex.html

This file was deleted.

Binary file modified bin/engine/Main$TestScene.class
Binary file not shown.
Binary file modified bin/engine/Main.class
Binary file not shown.
Binary file modified bin/engine/audio/IAudioDevice.class
Binary file not shown.
Binary file modified bin/engine/audio/Sound.class
Binary file not shown.
Binary file modified bin/engine/audio/SoundData.class
Binary file not shown.
Binary file modified bin/engine/audio/openal/OpenALAudioDevice$AudioChannel.class
Binary file not shown.
Binary file modified bin/engine/audio/openal/OpenALAudioDevice$AudioObject.class
Binary file not shown.
Binary file modified bin/engine/audio/openal/OpenALAudioDevice.class
Binary file not shown.
Binary file modified bin/engine/components/AudioComponent.class
Binary file not shown.
Binary file modified bin/engine/components/ColliderComponent.class
Binary file not shown.
Binary file modified bin/engine/components/CollisionComponent$1.class
Binary file not shown.
Binary file modified bin/engine/components/CollisionComponent.class
Binary file not shown.
Binary file modified bin/engine/components/LightComponent.class
Binary file not shown.
Binary file modified bin/engine/components/RemoveComponent.class
Binary file not shown.
Binary file modified bin/engine/components/SpriteComponent$Animation.class
Binary file not shown.
Binary file modified bin/engine/components/SpriteComponent.class
Binary file not shown.
Binary file modified bin/engine/core/CoreEngine.class
Binary file not shown.
Binary file modified bin/engine/core/Scene$1.class
Binary file not shown.
Binary file modified bin/engine/core/Scene.class
Binary file not shown.
Binary file modified bin/engine/core/entity/Entity.class
Binary file not shown.
Binary file modified bin/engine/core/entity/EntityComponent.class
Binary file not shown.
Binary file modified bin/engine/core/entity/IEntityVisitor.class
Binary file not shown.
Binary file modified bin/engine/input/BaseButton$Command.class
Binary file not shown.
Binary file modified bin/engine/input/BaseButton.class
Binary file not shown.
Binary file modified bin/engine/input/ButtonAxis.class
Binary file not shown.
Binary file modified bin/engine/input/CompoundAxis.class
Binary file not shown.
Binary file modified bin/engine/input/CompoundButton.class
Binary file not shown.
Binary file modified bin/engine/input/IAxis.class
Binary file not shown.
Binary file modified bin/engine/input/IButton.class
Binary file not shown.
Binary file modified bin/engine/input/IInput.class
Binary file not shown.
Binary file modified bin/engine/input/JoystickAxis.class
Binary file not shown.
Binary file modified bin/engine/input/JoystickButton$1.class
Binary file not shown.
Binary file modified bin/engine/input/JoystickButton.class
Binary file not shown.
Binary file modified bin/engine/input/KeyButton$1.class
Binary file not shown.
Binary file modified bin/engine/input/KeyButton.class
Binary file not shown.
Binary file modified bin/engine/input/opengl/OpenGLInput.class
Binary file not shown.
Binary file modified bin/engine/rendering/ArrayBitmap$IVisitor.class
Binary file not shown.
Binary file modified bin/engine/rendering/ArrayBitmap.class
Binary file not shown.
Binary file modified bin/engine/rendering/Color.class
Binary file not shown.
Binary file modified bin/engine/rendering/Dither.class
Binary file not shown.
Binary file modified bin/engine/rendering/IDisplay.class
Binary file not shown.
Binary file modified bin/engine/rendering/IRenderContext.class
Binary file not shown.
Binary file modified bin/engine/rendering/IRenderDevice$BlendMode.class
Binary file not shown.
Binary file modified bin/engine/rendering/IRenderDevice.class
Binary file not shown.
Binary file modified bin/engine/rendering/LightMap.class
Binary file not shown.
Binary file modified bin/engine/rendering/RenderContext.class
Binary file not shown.
Binary file modified bin/engine/rendering/RenderTarget.class
Binary file not shown.
Binary file modified bin/engine/rendering/SpriteSheet.class
Binary file not shown.
Binary file modified bin/engine/rendering/Texture.class
Binary file not shown.
Binary file modified bin/engine/rendering/opengl/OpenGLDisplay.class
Binary file not shown.
Binary file modified bin/engine/rendering/opengl/OpenGLRenderDevice$1.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified bin/engine/rendering/opengl/OpenGLRenderDevice$TextureData.class
Binary file not shown.
Binary file modified bin/engine/rendering/opengl/OpenGLRenderDevice.class
Binary file not shown.
Binary file modified bin/engine/space/AABB.class
Binary file not shown.
Binary file modified bin/engine/space/ISpatialObject.class
Binary file not shown.
Binary file modified bin/engine/space/ISpatialStructure.class
Binary file not shown.
Binary file modified bin/engine/space/QuadTree.class
Binary file not shown.
Binary file modified bin/engine/util/Debug.class
Binary file not shown.
Binary file modified bin/engine/util/DoublePair.class
Binary file not shown.
Binary file modified bin/engine/util/IDAssigner.class
Binary file not shown.
Binary file modified bin/engine/util/Util.class
Binary file not shown.
Binary file modified bin/engine/util/factory/SpriteSheetFactory.class
Binary file not shown.
Binary file modified bin/engine/util/factory/TextureFactory.class
Binary file not shown.
2 changes: 1 addition & 1 deletion run
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
mv res bin/res
cd bin

java engine/Main
java -cp ../lib/lwjgl.jar:. -Djava.library.path="../lib/native" engine/Main

mv res ../res
cd ../

0 comments on commit 3165518

Please sign in to comment.