-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
78 lines (78 loc) · 48.8 KB
/
Makefile
File metadata and controls
78 lines (78 loc) · 48.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# This Makefile was generated using MakeGen v1.3.1 made by Tim Håkansson
# and is licensed under MIT. Full source of the project can be found at
# https://github.com/Thraix/MakeGen
CC=@g++
CO=@g++ -o
MKDIR_P=mkdir -p
BIN=bin/
OBJPATH=$(BIN)intermediates
INCLUDES=-I ../Greet-Engine-Port/deps/includes/ -I ../Greet-Engine-Port/Greet-core/src/
OBJECTS=$(OBJPATH)/Chunk.o $(OBJPATH)/HalfEdgeMesh.o $(OBJPATH)/LineRenderer.o $(OBJPATH)/MCClassification.o $(OBJPATH)/MCMesh.o $(OBJPATH)/Player.o $(OBJPATH)/PlayerCamera.o $(OBJPATH)/RayCast.o $(OBJPATH)/TerrainCursor.o $(OBJPATH)/Voxels.o $(OBJPATH)/World.o $(OBJPATH)/main.o $(OBJPATH)/PhysicsBody.o $(OBJPATH)/PhysicsEngine.o
CFLAGS=$(INCLUDES) -std=c++17 -c -D_DEBUG -g -W
LIBDIR=-L ../Greet-Engine-Port/Greet-core/bin/
LDFLAGS=-Wl,-rpath=../Greet-Engine-Port/Greet-core/bin/
LIBS=$(LIBDIR) -lgreet -lGL -lGLEW -lglfw -lfreetype -lfreeimage
DEPENDENCIES=./../Greet-Engine-Port/Greet-core/
OUTPUT=$(BIN)TIMber.x86_64
.PHONY: all directories rebuild clean run
all: directories $(OUTPUT)
directories: $(BIN) $(OBJPATH)
$(BIN):
$(info Creating output directories)
@$(MKDIR_P) $(BIN)
$(OBJPATH):
@$(MKDIR_P) $(OBJPATH)
run: all
@./$(OUTPUT)
rebuild: clean all
clean:
$(info Removing intermediates)
rm -rf $(OBJPATH)/*.o
$(OUTPUT): $(OBJECTS)
$(info Generating output file)
$(CO) $(OUTPUT) $(OBJECTS) $(LDFLAGS) $(LIBS)
install: all
$(info Installing TIMber to /usr/bin/)
@cp $(OUTPUT) /usr/bin/TIMber.x86_64
$(OBJPATH)/Chunk.o : src/Chunk.cpp ../Greet-Engine-Port/Greet-core/src/graphics/models/MeshFactory.h ../Greet-Engine-Port/Greet-core/src/graphics/models/MeshData.h ../Greet-Engine-Port/Greet-core/src/common/Pointer.h ../Greet-Engine-Port/Greet-core/src/common/Types.h ../Greet-Engine-Port/Greet-core/src/logging/Log.h ../Greet-Engine-Port/Greet-core/src/logging/LogLevel.h ../Greet-Engine-Port/Greet-core/src/logging/Logger.h ../Greet-Engine-Port/Greet-core/src/logging/LogStream.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/VertexBuffer.h ../Greet-Engine-Port/Greet-core/src/common/Memory.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/Buffer.h ../Greet-Engine-Port/Greet-core/src/math/Maths.h ../Greet-Engine-Port/Greet-core/src/math/Mat3.h ../Greet-Engine-Port/Greet-core/src/math/Vec2.h ../Greet-Engine-Port/Greet-core/src/math/Vec3.h ../Greet-Engine-Port/Greet-core/src/math/MathFunc.h ../Greet-Engine-Port/Greet-core/src/math/Quaternion.h ../Greet-Engine-Port/Greet-core/src/math/Vec4.h ../Greet-Engine-Port/Greet-core/src/math/Mat4.h src/Chunk.h ../Greet-Engine-Port/Greet-core/src/graphics/models/Mesh.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/VertexArray.h ../Greet-Engine-Port/Greet-core/src/utils/Noise.h src/MCMesh.h src/MCPointData.h src/Voxels.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/GUIUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/Color.h ../Greet-Engine-Port/Greet-core/src/graphics/Window.h ../Greet-Engine-Port/Greet-core/src/input/Joystick.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/Font.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/FontAtlas.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture2D.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture.h ../Greet-Engine-Port/Greet-core/src/utils/HotSwapping.h ../Greet-Engine-Port/Greet-core/src/utils/FileUtils.h ../Greet-Engine-Port/Greet-core/src/utils/Resource.h ../Greet-Engine-Port/Greet-core/src/utils/UUID.h ../Greet-Engine-Port/Greet-core/src/utils/Utils.h ../Greet-Engine-Port/Greet-core/src/utils/ImageUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/TLBR.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XMLObject.h ../Greet-Engine-Port/Greet-core/src/utils/StringUtils.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XML.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONLoader.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONArray.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSON.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONObject.h src/PlayerCamera.h ../Greet-Engine-Port/Greet-core/src/graphics/cameras/Camera3D.h ../Greet-Engine-Port/Greet-core/src/event/Event.h ../Greet-Engine-Port/Greet-core/src/event/ViewportEvent.h ../Greet-Engine-Port/Greet-core/src/event/WindowEvent.h ../Greet-Engine-Port/Greet-core/src/graphics/RenderCommand.h ../Greet-Engine-Port/Greet-core/src/graphics/shaders/Shader.h ../Greet-Engine-Port/Greet-core/src/math/Line.h src/RayCast.h
$(info -[7%]- $<)
$(CC) $(CFLAGS) -o $@ $<
$(OBJPATH)/HalfEdgeMesh.o : src/HalfEdgeMesh.cpp src/HalfEdgeMesh.h ../Greet-Engine-Port/Greet-core/src/common/Types.h ../Greet-Engine-Port/Greet-core/src/graphics/models/MeshData.h ../Greet-Engine-Port/Greet-core/src/common/Pointer.h ../Greet-Engine-Port/Greet-core/src/logging/Log.h ../Greet-Engine-Port/Greet-core/src/logging/LogLevel.h ../Greet-Engine-Port/Greet-core/src/logging/Logger.h ../Greet-Engine-Port/Greet-core/src/logging/LogStream.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/VertexBuffer.h ../Greet-Engine-Port/Greet-core/src/common/Memory.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/Buffer.h ../Greet-Engine-Port/Greet-core/src/math/Maths.h ../Greet-Engine-Port/Greet-core/src/math/Mat3.h ../Greet-Engine-Port/Greet-core/src/math/Vec2.h ../Greet-Engine-Port/Greet-core/src/math/Vec3.h ../Greet-Engine-Port/Greet-core/src/math/MathFunc.h ../Greet-Engine-Port/Greet-core/src/math/Quaternion.h ../Greet-Engine-Port/Greet-core/src/math/Vec4.h ../Greet-Engine-Port/Greet-core/src/math/Mat4.h src/RayCast.h src/MCMesh.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/VertexArray.h src/MCPointData.h src/Voxels.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/GUIUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/Color.h ../Greet-Engine-Port/Greet-core/src/graphics/Window.h ../Greet-Engine-Port/Greet-core/src/input/Joystick.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/Font.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/FontAtlas.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture2D.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture.h ../Greet-Engine-Port/Greet-core/src/utils/HotSwapping.h ../Greet-Engine-Port/Greet-core/src/utils/FileUtils.h ../Greet-Engine-Port/Greet-core/src/utils/Resource.h ../Greet-Engine-Port/Greet-core/src/utils/UUID.h ../Greet-Engine-Port/Greet-core/src/utils/Utils.h ../Greet-Engine-Port/Greet-core/src/utils/ImageUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/TLBR.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XMLObject.h ../Greet-Engine-Port/Greet-core/src/utils/StringUtils.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XML.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONLoader.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONArray.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSON.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONObject.h
$(info -[14%]- $<)
$(CC) $(CFLAGS) -o $@ $<
$(OBJPATH)/LineRenderer.o : src/LineRenderer.cpp ../Greet-Engine-Port/Greet-core/src/internal/GreetGL.h ../Greet-Engine-Port/Greet-core/src/logging/Log.h ../Greet-Engine-Port/Greet-core/src/logging/LogLevel.h ../Greet-Engine-Port/Greet-core/src/logging/Logger.h ../Greet-Engine-Port/Greet-core/src/logging/LogStream.h ../Greet-Engine-Port/Greet-core/src/utils/LogUtils.h ../Greet-Engine-Port/Greet-core/src/common/Types.h src/LineRenderer.h ../Greet-Engine-Port/Greet-core/src/graphics/renderers/Renderer3D.h ../Greet-Engine-Port/Greet-core/src/graphics/Skybox.h ../Greet-Engine-Port/Greet-core/src/graphics/cameras/Camera3D.h ../Greet-Engine-Port/Greet-core/src/event/Event.h ../Greet-Engine-Port/Greet-core/src/utils/Utils.h ../Greet-Engine-Port/Greet-core/src/math/Vec2.h ../Greet-Engine-Port/Greet-core/src/math/Vec3.h ../Greet-Engine-Port/Greet-core/src/math/MathFunc.h ../Greet-Engine-Port/Greet-core/src/math/Quaternion.h ../Greet-Engine-Port/Greet-core/src/math/Vec4.h ../Greet-Engine-Port/Greet-core/src/event/ViewportEvent.h ../Greet-Engine-Port/Greet-core/src/event/WindowEvent.h ../Greet-Engine-Port/Greet-core/src/graphics/RenderCommand.h ../Greet-Engine-Port/Greet-core/src/graphics/Color.h ../Greet-Engine-Port/Greet-core/src/graphics/Window.h ../Greet-Engine-Port/Greet-core/src/input/Joystick.h ../Greet-Engine-Port/Greet-core/src/math/Maths.h ../Greet-Engine-Port/Greet-core/src/math/Mat3.h ../Greet-Engine-Port/Greet-core/src/math/Mat4.h ../Greet-Engine-Port/Greet-core/src/graphics/shaders/Shader.h ../Greet-Engine-Port/Greet-core/src/common/Memory.h ../Greet-Engine-Port/Greet-core/src/utils/FileUtils.h ../Greet-Engine-Port/Greet-core/src/utils/HotSwapping.h ../Greet-Engine-Port/Greet-core/src/utils/Resource.h ../Greet-Engine-Port/Greet-core/src/utils/UUID.h ../Greet-Engine-Port/Greet-core/src/math/Line.h ../Greet-Engine-Port/Greet-core/src/graphics/models/Mesh.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/Buffer.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/VertexArray.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/VertexBuffer.h ../Greet-Engine-Port/Greet-core/src/graphics/models/MeshData.h ../Greet-Engine-Port/Greet-core/src/common/Pointer.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/CubeMap.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture.h ../Greet-Engine-Port/Greet-core/src/utils/ImageUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/layers/Scene.h ../Greet-Engine-Port/Greet-core/src/graphics/models/EntityModel.h ../Greet-Engine-Port/Greet-core/src/graphics/models/Material.h ../Greet-Engine-Port/Greet-core/src/graphics/shaders/ShaderFactory.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture2D.h
$(info -[21%]- $<)
$(CC) $(CFLAGS) -o $@ $<
$(OBJPATH)/MCClassification.o : src/MCClassification.cpp src/MCClassification.h ../Greet-Engine-Port/Greet-core/src/logging/Log.h ../Greet-Engine-Port/Greet-core/src/logging/LogLevel.h ../Greet-Engine-Port/Greet-core/src/logging/Logger.h ../Greet-Engine-Port/Greet-core/src/logging/LogStream.h ../Greet-Engine-Port/Greet-core/src/math/Vec3.h ../Greet-Engine-Port/Greet-core/src/math/MathFunc.h ../Greet-Engine-Port/Greet-core/src/common/Types.h ../Greet-Engine-Port/Greet-core/src/math/Quaternion.h ../Greet-Engine-Port/Greet-core/src/math/Vec4.h src/MCPointData.h src/Voxels.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/GUIUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/Color.h ../Greet-Engine-Port/Greet-core/src/graphics/Window.h ../Greet-Engine-Port/Greet-core/src/input/Joystick.h ../Greet-Engine-Port/Greet-core/src/math/Maths.h ../Greet-Engine-Port/Greet-core/src/math/Mat3.h ../Greet-Engine-Port/Greet-core/src/math/Vec2.h ../Greet-Engine-Port/Greet-core/src/math/Mat4.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/Font.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/FontAtlas.h ../Greet-Engine-Port/Greet-core/src/common/Memory.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture2D.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture.h ../Greet-Engine-Port/Greet-core/src/utils/HotSwapping.h ../Greet-Engine-Port/Greet-core/src/utils/FileUtils.h ../Greet-Engine-Port/Greet-core/src/utils/Resource.h ../Greet-Engine-Port/Greet-core/src/utils/UUID.h ../Greet-Engine-Port/Greet-core/src/utils/Utils.h ../Greet-Engine-Port/Greet-core/src/utils/ImageUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/TLBR.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XMLObject.h ../Greet-Engine-Port/Greet-core/src/utils/StringUtils.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XML.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONLoader.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONArray.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSON.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONObject.h
$(info -[28%]- $<)
$(CC) $(CFLAGS) -o $@ $<
$(OBJPATH)/MCMesh.o : src/MCMesh.cpp ../Greet-Engine-Port/Greet-core/src/internal/GreetGL.h ../Greet-Engine-Port/Greet-core/src/logging/Log.h ../Greet-Engine-Port/Greet-core/src/logging/LogLevel.h ../Greet-Engine-Port/Greet-core/src/logging/Logger.h ../Greet-Engine-Port/Greet-core/src/logging/LogStream.h ../Greet-Engine-Port/Greet-core/src/utils/LogUtils.h ../Greet-Engine-Port/Greet-core/src/common/Types.h src/MCClassification.h ../Greet-Engine-Port/Greet-core/src/math/Vec3.h ../Greet-Engine-Port/Greet-core/src/math/MathFunc.h ../Greet-Engine-Port/Greet-core/src/math/Quaternion.h ../Greet-Engine-Port/Greet-core/src/math/Vec4.h src/MCPointData.h src/Voxels.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/GUIUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/Color.h ../Greet-Engine-Port/Greet-core/src/graphics/Window.h ../Greet-Engine-Port/Greet-core/src/input/Joystick.h ../Greet-Engine-Port/Greet-core/src/math/Maths.h ../Greet-Engine-Port/Greet-core/src/math/Mat3.h ../Greet-Engine-Port/Greet-core/src/math/Vec2.h ../Greet-Engine-Port/Greet-core/src/math/Mat4.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/Font.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/FontAtlas.h ../Greet-Engine-Port/Greet-core/src/common/Memory.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture2D.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture.h ../Greet-Engine-Port/Greet-core/src/utils/HotSwapping.h ../Greet-Engine-Port/Greet-core/src/utils/FileUtils.h ../Greet-Engine-Port/Greet-core/src/utils/Resource.h ../Greet-Engine-Port/Greet-core/src/utils/UUID.h ../Greet-Engine-Port/Greet-core/src/utils/Utils.h ../Greet-Engine-Port/Greet-core/src/utils/ImageUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/TLBR.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XMLObject.h ../Greet-Engine-Port/Greet-core/src/utils/StringUtils.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XML.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONLoader.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONArray.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSON.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONObject.h src/MCMesh.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/Buffer.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/VertexArray.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/VertexBuffer.h
$(info -[35%]- $<)
$(CC) $(CFLAGS) -o $@ $<
$(OBJPATH)/Player.o : src/Player.cpp ../Greet-Engine-Port/Greet-core/src/audio/AudioChannel.h ../Greet-Engine-Port/Greet-core/src/utils/StringUtils.h ../Greet-Engine-Port/Greet-core/src/audio/AudioChannelManager.h ../Greet-Engine-Port/Greet-core/src/audio/Sound.h ../Greet-Engine-Port/Greet-core/src/logging/Log.h ../Greet-Engine-Port/Greet-core/src/logging/LogLevel.h ../Greet-Engine-Port/Greet-core/src/logging/Logger.h ../Greet-Engine-Port/Greet-core/src/logging/LogStream.h ../Greet-Engine-Port/Greet-core/src/audio/SoundManager.h ../Greet-Engine-Port/Greet-core/src/common/Types.h ../Greet-Engine-Port/Greet-core/src/utils/ErrorHandle.h ../Greet-Engine-Port/Greet-core/src/utils/Utils.h ../Greet-Engine-Port/Greet-core/src/math/Vec2.h ../Greet-Engine-Port/Greet-core/src/math/Vec3.h ../Greet-Engine-Port/Greet-core/src/math/MathFunc.h ../Greet-Engine-Port/Greet-core/src/math/Quaternion.h ../Greet-Engine-Port/Greet-core/src/math/Vec4.h ../Greet-Engine-Port/Greet-core/src/common/Memory.h ../Greet-Engine-Port/Greet-core/src/common/Pointer.h ../Greet-Engine-Port/Greet-core/src/drivers/Driver.h ../Greet-Engine-Port/Greet-core/src/drivers/DriverListener.h ../Greet-Engine-Port/Greet-core/src/drivers/Driver1.h ../Greet-Engine-Port/Greet-core/src/drivers/Driver2.h ../Greet-Engine-Port/Greet-core/src/drivers/Driver4.h ../Greet-Engine-Port/Greet-core/src/drivers/DriverAdapter.h ../Greet-Engine-Port/Greet-core/src/drivers/DriverDispatcher.h ../Greet-Engine-Port/Greet-core/src/drivers/LinearDriver.h ../Greet-Engine-Port/Greet-core/src/drivers/RectDriver.h ../Greet-Engine-Port/Greet-core/src/event/Event.h ../Greet-Engine-Port/Greet-core/src/event/EventDispatcher.h ../Greet-Engine-Port/Greet-core/src/event/JoystickEvent.h ../Greet-Engine-Port/Greet-core/src/math/Maths.h ../Greet-Engine-Port/Greet-core/src/math/Mat3.h ../Greet-Engine-Port/Greet-core/src/math/Mat4.h ../Greet-Engine-Port/Greet-core/src/event/KeyEvent.h ../Greet-Engine-Port/Greet-core/src/event/MouseEvent.h ../Greet-Engine-Port/Greet-core/src/event/ViewportEvent.h ../Greet-Engine-Port/Greet-core/src/event/WindowEvent.h ../Greet-Engine-Port/Greet-core/src/graphics/Animation.h ../Greet-Engine-Port/Greet-core/src/graphics/Sprite.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture2D.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture.h ../Greet-Engine-Port/Greet-core/src/utils/HotSwapping.h ../Greet-Engine-Port/Greet-core/src/utils/FileUtils.h ../Greet-Engine-Port/Greet-core/src/utils/Resource.h ../Greet-Engine-Port/Greet-core/src/utils/UUID.h ../Greet-Engine-Port/Greet-core/src/utils/ImageUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/TextureManager.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/CubeMap.h ../Greet-Engine-Port/Greet-core/src/graphics/Color.h ../Greet-Engine-Port/Greet-core/src/graphics/FrameBufferObject.h ../Greet-Engine-Port/Greet-core/src/graphics/GlobalSceneManager.h ../Greet-Engine-Port/Greet-core/src/graphics/SceneManager.h ../Greet-Engine-Port/Greet-core/src/graphics/layers/Scene.h ../Greet-Engine-Port/Greet-core/src/graphics/Light.h ../Greet-Engine-Port/Greet-core/src/graphics/shaders/Shader.h ../Greet-Engine-Port/Greet-core/src/graphics/ParticlePool.h ../Greet-Engine-Port/Greet-core/src/graphics/RenderCommand.h ../Greet-Engine-Port/Greet-core/src/graphics/Renderable.h ../Greet-Engine-Port/Greet-core/src/graphics/renderers/Renderer2D.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/Font.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/FontAtlas.h ../Greet-Engine-Port/Greet-core/src/graphics/Renderable2D.h ../Greet-Engine-Port/Greet-core/src/graphics/RenderablePoly.h ../Greet-Engine-Port/Greet-core/src/graphics/Skybox.h ../Greet-Engine-Port/Greet-core/src/graphics/cameras/Camera3D.h ../Greet-Engine-Port/Greet-core/src/graphics/Window.h ../Greet-Engine-Port/Greet-core/src/input/Joystick.h ../Greet-Engine-Port/Greet-core/src/math/Line.h ../Greet-Engine-Port/Greet-core/src/graphics/models/Mesh.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/Buffer.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/VertexArray.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/VertexBuffer.h ../Greet-Engine-Port/Greet-core/src/graphics/models/MeshData.h ../Greet-Engine-Port/Greet-core/src/graphics/atlas/Atlas.h ../Greet-Engine-Port/Greet-core/src/graphics/atlas/AtlasManager.h ../Greet-Engine-Port/Greet-core/src/graphics/cameras/FPCamera3D.h ../Greet-Engine-Port/Greet-core/src/graphics/cameras/TPCamera3D.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/FontContainer.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/FontManager.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/Button.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/Component.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/ComponentFactory.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XMLObject.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/GUIScene.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/Style.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/GUIUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/TLBR.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XML.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/StyleTemplateClasses.h ../Greet-Engine-Port/Greet-core/src/utils/MetaFile.h ../Greet-Engine-Port/Greet-core/src/graphics/renderers/GUIRenderer.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/Label.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/Text.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/ColorPicker.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/ColorPickerWindow.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/Frame.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/Container.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/GUIMouseListener.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/HueSlider.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/Slider.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/SatValSlider.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/TextBox.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/Divider.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/Docker.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/docker/DockerSplit.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/docker/DockerContainer.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/docker/DockerInterface.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/docker/DockerTab.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/GUIProperty.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/ProgressBar.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/RadioButton.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/RadioGroup.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/SceneView.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/TreeNode.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/TreeView.h ../Greet-Engine-Port/Greet-core/src/utils/Timer.h ../Greet-Engine-Port/Greet-core/src/graphics/layers/Group.h ../Greet-Engine-Port/Greet-core/src/graphics/layers/Layer.h ../Greet-Engine-Port/Greet-core/src/graphics/renderers/BatchRenderer.h ../Greet-Engine-Port/Greet-core/src/graphics/layers/Layer3D.h ../Greet-Engine-Port/Greet-core/src/graphics/renderers/Renderer3D.h ../Greet-Engine-Port/Greet-core/src/graphics/models/EntityModel.h ../Greet-Engine-Port/Greet-core/src/graphics/models/Material.h ../Greet-Engine-Port/Greet-core/src/graphics/shaders/ShaderFactory.h ../Greet-Engine-Port/Greet-core/src/graphics/models/MeshFactory.h ../Greet-Engine-Port/Greet-core/src/graphics/renderers/BatchRenderer3D.h ../Greet-Engine-Port/Greet-core/src/utils/OBJUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/ImageFactory.h ../Greet-Engine-Port/Greet-core/src/input/Input.h ../Greet-Engine-Port/Greet-core/src/input/InputDefines.h ../Greet-Engine-Port/Greet-core/src/internal/App.h ../Greet-Engine-Port/Greet-core/src/internal/GreetGL.h ../Greet-Engine-Port/Greet-core/src/utils/LogUtils.h ../Greet-Engine-Port/Greet-core/src/math/Plane.h ../Greet-Engine-Port/Greet-core/src/utils/AABBUtils.h ../Greet-Engine-Port/Greet-core/src/utils/ColorUtils.h ../Greet-Engine-Port/Greet-core/src/utils/Noise.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSON.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONArray.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONLoader.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONObject.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XMLException.h src/Player.h src/Inventory.h src/Voxels.h src/InventoryScene.h src/PlayerCamera.h src/World.h src/Chunk.h src/MCMesh.h src/MCPointData.h src/RayCast.h src/TerrainCursor.h
$(info -[42%]- $<)
$(CC) $(CFLAGS) -o $@ $<
$(OBJPATH)/PlayerCamera.o : src/PlayerCamera.cpp ../Greet-Engine-Port/Greet-core/src/event/KeyEvent.h ../Greet-Engine-Port/Greet-core/src/event/Event.h ../Greet-Engine-Port/Greet-core/src/utils/Utils.h ../Greet-Engine-Port/Greet-core/src/common/Types.h ../Greet-Engine-Port/Greet-core/src/math/Vec2.h ../Greet-Engine-Port/Greet-core/src/math/Vec3.h ../Greet-Engine-Port/Greet-core/src/logging/Log.h ../Greet-Engine-Port/Greet-core/src/logging/LogLevel.h ../Greet-Engine-Port/Greet-core/src/logging/Logger.h ../Greet-Engine-Port/Greet-core/src/logging/LogStream.h ../Greet-Engine-Port/Greet-core/src/math/MathFunc.h ../Greet-Engine-Port/Greet-core/src/math/Quaternion.h ../Greet-Engine-Port/Greet-core/src/math/Vec4.h ../Greet-Engine-Port/Greet-core/src/math/Maths.h ../Greet-Engine-Port/Greet-core/src/math/Mat3.h ../Greet-Engine-Port/Greet-core/src/math/Mat4.h ../Greet-Engine-Port/Greet-core/src/event/MouseEvent.h ../Greet-Engine-Port/Greet-core/src/graphics/Window.h ../Greet-Engine-Port/Greet-core/src/input/Joystick.h ../Greet-Engine-Port/Greet-core/src/input/InputDefines.h src/PlayerCamera.h ../Greet-Engine-Port/Greet-core/src/graphics/cameras/Camera3D.h ../Greet-Engine-Port/Greet-core/src/event/ViewportEvent.h ../Greet-Engine-Port/Greet-core/src/event/WindowEvent.h ../Greet-Engine-Port/Greet-core/src/graphics/RenderCommand.h ../Greet-Engine-Port/Greet-core/src/graphics/Color.h ../Greet-Engine-Port/Greet-core/src/graphics/shaders/Shader.h ../Greet-Engine-Port/Greet-core/src/common/Memory.h ../Greet-Engine-Port/Greet-core/src/utils/FileUtils.h ../Greet-Engine-Port/Greet-core/src/utils/HotSwapping.h ../Greet-Engine-Port/Greet-core/src/utils/Resource.h ../Greet-Engine-Port/Greet-core/src/utils/UUID.h ../Greet-Engine-Port/Greet-core/src/math/Line.h
$(info -[50%]- $<)
$(CC) $(CFLAGS) -o $@ $<
$(OBJPATH)/RayCast.o : src/RayCast.cpp src/RayCast.h ../Greet-Engine-Port/Greet-core/src/math/Vec3.h ../Greet-Engine-Port/Greet-core/src/logging/Log.h ../Greet-Engine-Port/Greet-core/src/logging/LogLevel.h ../Greet-Engine-Port/Greet-core/src/logging/Logger.h ../Greet-Engine-Port/Greet-core/src/logging/LogStream.h ../Greet-Engine-Port/Greet-core/src/math/MathFunc.h ../Greet-Engine-Port/Greet-core/src/common/Types.h ../Greet-Engine-Port/Greet-core/src/math/Quaternion.h ../Greet-Engine-Port/Greet-core/src/math/Vec4.h src/MCMesh.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/Buffer.h ../Greet-Engine-Port/Greet-core/src/common/Memory.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/VertexArray.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/VertexBuffer.h src/MCPointData.h src/Voxels.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/GUIUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/Color.h ../Greet-Engine-Port/Greet-core/src/graphics/Window.h ../Greet-Engine-Port/Greet-core/src/input/Joystick.h ../Greet-Engine-Port/Greet-core/src/math/Maths.h ../Greet-Engine-Port/Greet-core/src/math/Mat3.h ../Greet-Engine-Port/Greet-core/src/math/Vec2.h ../Greet-Engine-Port/Greet-core/src/math/Mat4.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/Font.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/FontAtlas.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture2D.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture.h ../Greet-Engine-Port/Greet-core/src/utils/HotSwapping.h ../Greet-Engine-Port/Greet-core/src/utils/FileUtils.h ../Greet-Engine-Port/Greet-core/src/utils/Resource.h ../Greet-Engine-Port/Greet-core/src/utils/UUID.h ../Greet-Engine-Port/Greet-core/src/utils/Utils.h ../Greet-Engine-Port/Greet-core/src/utils/ImageUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/TLBR.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XMLObject.h ../Greet-Engine-Port/Greet-core/src/utils/StringUtils.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XML.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONLoader.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONArray.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSON.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONObject.h
$(info -[57%]- $<)
$(CC) $(CFLAGS) -o $@ $<
$(OBJPATH)/TerrainCursor.o : src/TerrainCursor.cpp ../Greet-Engine-Port/Greet-core/src/graphics/models/MeshFactory.h ../Greet-Engine-Port/Greet-core/src/graphics/models/MeshData.h ../Greet-Engine-Port/Greet-core/src/common/Pointer.h ../Greet-Engine-Port/Greet-core/src/common/Types.h ../Greet-Engine-Port/Greet-core/src/logging/Log.h ../Greet-Engine-Port/Greet-core/src/logging/LogLevel.h ../Greet-Engine-Port/Greet-core/src/logging/Logger.h ../Greet-Engine-Port/Greet-core/src/logging/LogStream.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/VertexBuffer.h ../Greet-Engine-Port/Greet-core/src/common/Memory.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/Buffer.h ../Greet-Engine-Port/Greet-core/src/math/Maths.h ../Greet-Engine-Port/Greet-core/src/math/Mat3.h ../Greet-Engine-Port/Greet-core/src/math/Vec2.h ../Greet-Engine-Port/Greet-core/src/math/Vec3.h ../Greet-Engine-Port/Greet-core/src/math/MathFunc.h ../Greet-Engine-Port/Greet-core/src/math/Quaternion.h ../Greet-Engine-Port/Greet-core/src/math/Vec4.h ../Greet-Engine-Port/Greet-core/src/math/Mat4.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/TextureManager.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/CubeMap.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture.h ../Greet-Engine-Port/Greet-core/src/utils/HotSwapping.h ../Greet-Engine-Port/Greet-core/src/utils/FileUtils.h ../Greet-Engine-Port/Greet-core/src/utils/Resource.h ../Greet-Engine-Port/Greet-core/src/utils/UUID.h ../Greet-Engine-Port/Greet-core/src/utils/Utils.h ../Greet-Engine-Port/Greet-core/src/utils/ImageUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture2D.h src/TerrainCursor.h ../Greet-Engine-Port/Greet-core/src/graphics/cameras/Camera3D.h ../Greet-Engine-Port/Greet-core/src/event/Event.h ../Greet-Engine-Port/Greet-core/src/event/ViewportEvent.h ../Greet-Engine-Port/Greet-core/src/event/WindowEvent.h ../Greet-Engine-Port/Greet-core/src/graphics/RenderCommand.h ../Greet-Engine-Port/Greet-core/src/graphics/Color.h ../Greet-Engine-Port/Greet-core/src/graphics/Window.h ../Greet-Engine-Port/Greet-core/src/input/Joystick.h ../Greet-Engine-Port/Greet-core/src/graphics/shaders/Shader.h ../Greet-Engine-Port/Greet-core/src/math/Line.h ../Greet-Engine-Port/Greet-core/src/graphics/models/EntityModel.h ../Greet-Engine-Port/Greet-core/src/graphics/models/Material.h ../Greet-Engine-Port/Greet-core/src/graphics/shaders/ShaderFactory.h ../Greet-Engine-Port/Greet-core/src/graphics/models/Mesh.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/VertexArray.h src/RayCast.h src/MCMesh.h src/MCPointData.h src/Voxels.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/GUIUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/Font.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/FontAtlas.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/TLBR.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XMLObject.h ../Greet-Engine-Port/Greet-core/src/utils/StringUtils.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XML.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONLoader.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONArray.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSON.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONObject.h
$(info -[64%]- $<)
$(CC) $(CFLAGS) -o $@ $<
$(OBJPATH)/Voxels.o : src/Voxels.cpp src/Voxels.h ../Greet-Engine-Port/Greet-core/src/common/Types.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/GUIUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/Color.h ../Greet-Engine-Port/Greet-core/src/math/Vec3.h ../Greet-Engine-Port/Greet-core/src/logging/Log.h ../Greet-Engine-Port/Greet-core/src/logging/LogLevel.h ../Greet-Engine-Port/Greet-core/src/logging/Logger.h ../Greet-Engine-Port/Greet-core/src/logging/LogStream.h ../Greet-Engine-Port/Greet-core/src/math/MathFunc.h ../Greet-Engine-Port/Greet-core/src/math/Quaternion.h ../Greet-Engine-Port/Greet-core/src/math/Vec4.h ../Greet-Engine-Port/Greet-core/src/graphics/Window.h ../Greet-Engine-Port/Greet-core/src/input/Joystick.h ../Greet-Engine-Port/Greet-core/src/math/Maths.h ../Greet-Engine-Port/Greet-core/src/math/Mat3.h ../Greet-Engine-Port/Greet-core/src/math/Vec2.h ../Greet-Engine-Port/Greet-core/src/math/Mat4.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/Font.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/FontAtlas.h ../Greet-Engine-Port/Greet-core/src/common/Memory.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture2D.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture.h ../Greet-Engine-Port/Greet-core/src/utils/HotSwapping.h ../Greet-Engine-Port/Greet-core/src/utils/FileUtils.h ../Greet-Engine-Port/Greet-core/src/utils/Resource.h ../Greet-Engine-Port/Greet-core/src/utils/UUID.h ../Greet-Engine-Port/Greet-core/src/utils/Utils.h ../Greet-Engine-Port/Greet-core/src/utils/ImageUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/TLBR.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XMLObject.h ../Greet-Engine-Port/Greet-core/src/utils/StringUtils.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XML.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONLoader.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONArray.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSON.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONObject.h
$(info -[71%]- $<)
$(CC) $(CFLAGS) -o $@ $<
$(OBJPATH)/World.o : src/World.cpp src/LineRenderer.h ../Greet-Engine-Port/Greet-core/src/graphics/renderers/Renderer3D.h ../Greet-Engine-Port/Greet-core/src/graphics/Skybox.h ../Greet-Engine-Port/Greet-core/src/graphics/cameras/Camera3D.h ../Greet-Engine-Port/Greet-core/src/event/Event.h ../Greet-Engine-Port/Greet-core/src/utils/Utils.h ../Greet-Engine-Port/Greet-core/src/common/Types.h ../Greet-Engine-Port/Greet-core/src/math/Vec2.h ../Greet-Engine-Port/Greet-core/src/math/Vec3.h ../Greet-Engine-Port/Greet-core/src/logging/Log.h ../Greet-Engine-Port/Greet-core/src/logging/LogLevel.h ../Greet-Engine-Port/Greet-core/src/logging/Logger.h ../Greet-Engine-Port/Greet-core/src/logging/LogStream.h ../Greet-Engine-Port/Greet-core/src/math/MathFunc.h ../Greet-Engine-Port/Greet-core/src/math/Quaternion.h ../Greet-Engine-Port/Greet-core/src/math/Vec4.h ../Greet-Engine-Port/Greet-core/src/event/ViewportEvent.h ../Greet-Engine-Port/Greet-core/src/event/WindowEvent.h ../Greet-Engine-Port/Greet-core/src/graphics/RenderCommand.h ../Greet-Engine-Port/Greet-core/src/graphics/Color.h ../Greet-Engine-Port/Greet-core/src/graphics/Window.h ../Greet-Engine-Port/Greet-core/src/input/Joystick.h ../Greet-Engine-Port/Greet-core/src/math/Maths.h ../Greet-Engine-Port/Greet-core/src/math/Mat3.h ../Greet-Engine-Port/Greet-core/src/math/Mat4.h ../Greet-Engine-Port/Greet-core/src/graphics/shaders/Shader.h ../Greet-Engine-Port/Greet-core/src/common/Memory.h ../Greet-Engine-Port/Greet-core/src/utils/FileUtils.h ../Greet-Engine-Port/Greet-core/src/utils/HotSwapping.h ../Greet-Engine-Port/Greet-core/src/utils/Resource.h ../Greet-Engine-Port/Greet-core/src/utils/UUID.h ../Greet-Engine-Port/Greet-core/src/math/Line.h ../Greet-Engine-Port/Greet-core/src/graphics/models/Mesh.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/Buffer.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/VertexArray.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/VertexBuffer.h ../Greet-Engine-Port/Greet-core/src/graphics/models/MeshData.h ../Greet-Engine-Port/Greet-core/src/common/Pointer.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/CubeMap.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture.h ../Greet-Engine-Port/Greet-core/src/utils/ImageUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/layers/Scene.h ../Greet-Engine-Port/Greet-core/src/graphics/models/EntityModel.h ../Greet-Engine-Port/Greet-core/src/graphics/models/Material.h ../Greet-Engine-Port/Greet-core/src/graphics/shaders/ShaderFactory.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture2D.h src/World.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/TextureManager.h src/Chunk.h ../Greet-Engine-Port/Greet-core/src/utils/Noise.h src/MCMesh.h src/MCPointData.h src/Voxels.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/GUIUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/Font.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/FontAtlas.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/TLBR.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XMLObject.h ../Greet-Engine-Port/Greet-core/src/utils/StringUtils.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XML.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONLoader.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONArray.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSON.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONObject.h src/PlayerCamera.h src/RayCast.h src/Player.h ../Greet-Engine-Port/Greet-core/src/graphics/renderers/BatchRenderer3D.h ../Greet-Engine-Port/Greet-core/src/graphics/models/MeshFactory.h ../Greet-Engine-Port/Greet-core/src/utils/OBJUtils.h src/Inventory.h src/InventoryScene.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/FontManager.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/FontContainer.h ../Greet-Engine-Port/Greet-core/src/graphics/layers/Layer.h ../Greet-Engine-Port/Greet-core/src/graphics/Renderable.h ../Greet-Engine-Port/Greet-core/src/graphics/renderers/Renderer2D.h ../Greet-Engine-Port/Greet-core/src/graphics/Sprite.h ../Greet-Engine-Port/Greet-core/src/graphics/renderers/BatchRenderer.h ../Greet-Engine-Port/Greet-core/src/graphics/Renderable2D.h ../Greet-Engine-Port/Greet-core/src/graphics/RenderablePoly.h src/TerrainCursor.h
$(info -[78%]- $<)
$(CC) $(CFLAGS) -o $@ $<
$(OBJPATH)/main.o : src/main.cpp ../Greet-Engine-Port/Greet-core/src/audio/AudioChannel.h ../Greet-Engine-Port/Greet-core/src/utils/StringUtils.h ../Greet-Engine-Port/Greet-core/src/audio/AudioChannelManager.h ../Greet-Engine-Port/Greet-core/src/audio/Sound.h ../Greet-Engine-Port/Greet-core/src/logging/Log.h ../Greet-Engine-Port/Greet-core/src/logging/LogLevel.h ../Greet-Engine-Port/Greet-core/src/logging/Logger.h ../Greet-Engine-Port/Greet-core/src/logging/LogStream.h ../Greet-Engine-Port/Greet-core/src/audio/SoundManager.h ../Greet-Engine-Port/Greet-core/src/common/Types.h ../Greet-Engine-Port/Greet-core/src/utils/ErrorHandle.h ../Greet-Engine-Port/Greet-core/src/utils/Utils.h ../Greet-Engine-Port/Greet-core/src/math/Vec2.h ../Greet-Engine-Port/Greet-core/src/math/Vec3.h ../Greet-Engine-Port/Greet-core/src/math/MathFunc.h ../Greet-Engine-Port/Greet-core/src/math/Quaternion.h ../Greet-Engine-Port/Greet-core/src/math/Vec4.h ../Greet-Engine-Port/Greet-core/src/common/Memory.h ../Greet-Engine-Port/Greet-core/src/common/Pointer.h ../Greet-Engine-Port/Greet-core/src/drivers/Driver.h ../Greet-Engine-Port/Greet-core/src/drivers/DriverListener.h ../Greet-Engine-Port/Greet-core/src/drivers/Driver1.h ../Greet-Engine-Port/Greet-core/src/drivers/Driver2.h ../Greet-Engine-Port/Greet-core/src/drivers/Driver4.h ../Greet-Engine-Port/Greet-core/src/drivers/DriverAdapter.h ../Greet-Engine-Port/Greet-core/src/drivers/DriverDispatcher.h ../Greet-Engine-Port/Greet-core/src/drivers/LinearDriver.h ../Greet-Engine-Port/Greet-core/src/drivers/RectDriver.h ../Greet-Engine-Port/Greet-core/src/event/Event.h ../Greet-Engine-Port/Greet-core/src/event/EventDispatcher.h ../Greet-Engine-Port/Greet-core/src/event/JoystickEvent.h ../Greet-Engine-Port/Greet-core/src/math/Maths.h ../Greet-Engine-Port/Greet-core/src/math/Mat3.h ../Greet-Engine-Port/Greet-core/src/math/Mat4.h ../Greet-Engine-Port/Greet-core/src/event/KeyEvent.h ../Greet-Engine-Port/Greet-core/src/event/MouseEvent.h ../Greet-Engine-Port/Greet-core/src/event/ViewportEvent.h ../Greet-Engine-Port/Greet-core/src/event/WindowEvent.h ../Greet-Engine-Port/Greet-core/src/graphics/Animation.h ../Greet-Engine-Port/Greet-core/src/graphics/Sprite.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture2D.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture.h ../Greet-Engine-Port/Greet-core/src/utils/HotSwapping.h ../Greet-Engine-Port/Greet-core/src/utils/FileUtils.h ../Greet-Engine-Port/Greet-core/src/utils/Resource.h ../Greet-Engine-Port/Greet-core/src/utils/UUID.h ../Greet-Engine-Port/Greet-core/src/utils/ImageUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/TextureManager.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/CubeMap.h ../Greet-Engine-Port/Greet-core/src/graphics/Color.h ../Greet-Engine-Port/Greet-core/src/graphics/FrameBufferObject.h ../Greet-Engine-Port/Greet-core/src/graphics/GlobalSceneManager.h ../Greet-Engine-Port/Greet-core/src/graphics/SceneManager.h ../Greet-Engine-Port/Greet-core/src/graphics/layers/Scene.h ../Greet-Engine-Port/Greet-core/src/graphics/Light.h ../Greet-Engine-Port/Greet-core/src/graphics/shaders/Shader.h ../Greet-Engine-Port/Greet-core/src/graphics/ParticlePool.h ../Greet-Engine-Port/Greet-core/src/graphics/RenderCommand.h ../Greet-Engine-Port/Greet-core/src/graphics/Renderable.h ../Greet-Engine-Port/Greet-core/src/graphics/renderers/Renderer2D.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/Font.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/FontAtlas.h ../Greet-Engine-Port/Greet-core/src/graphics/Renderable2D.h ../Greet-Engine-Port/Greet-core/src/graphics/RenderablePoly.h ../Greet-Engine-Port/Greet-core/src/graphics/Skybox.h ../Greet-Engine-Port/Greet-core/src/graphics/cameras/Camera3D.h ../Greet-Engine-Port/Greet-core/src/graphics/Window.h ../Greet-Engine-Port/Greet-core/src/input/Joystick.h ../Greet-Engine-Port/Greet-core/src/math/Line.h ../Greet-Engine-Port/Greet-core/src/graphics/models/Mesh.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/Buffer.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/VertexArray.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/VertexBuffer.h ../Greet-Engine-Port/Greet-core/src/graphics/models/MeshData.h ../Greet-Engine-Port/Greet-core/src/graphics/atlas/Atlas.h ../Greet-Engine-Port/Greet-core/src/graphics/atlas/AtlasManager.h ../Greet-Engine-Port/Greet-core/src/graphics/cameras/FPCamera3D.h ../Greet-Engine-Port/Greet-core/src/graphics/cameras/TPCamera3D.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/FontContainer.h ../Greet-Engine-Port/Greet-core/src/graphics/fonts/FontManager.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/Button.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/Component.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/ComponentFactory.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XMLObject.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/GUIScene.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/Style.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/GUIUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/TLBR.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XML.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/StyleTemplateClasses.h ../Greet-Engine-Port/Greet-core/src/utils/MetaFile.h ../Greet-Engine-Port/Greet-core/src/graphics/renderers/GUIRenderer.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/Label.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/Text.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/ColorPicker.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/ColorPickerWindow.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/Frame.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/Container.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/GUIMouseListener.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/HueSlider.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/Slider.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/SatValSlider.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/TextBox.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/Divider.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/Docker.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/docker/DockerSplit.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/docker/DockerContainer.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/docker/DockerInterface.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/docker/DockerTab.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/GUIProperty.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/ProgressBar.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/RadioButton.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/RadioGroup.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/SceneView.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/TreeNode.h ../Greet-Engine-Port/Greet-core/src/graphics/gui/TreeView.h ../Greet-Engine-Port/Greet-core/src/utils/Timer.h ../Greet-Engine-Port/Greet-core/src/graphics/layers/Group.h ../Greet-Engine-Port/Greet-core/src/graphics/layers/Layer.h ../Greet-Engine-Port/Greet-core/src/graphics/renderers/BatchRenderer.h ../Greet-Engine-Port/Greet-core/src/graphics/layers/Layer3D.h ../Greet-Engine-Port/Greet-core/src/graphics/renderers/Renderer3D.h ../Greet-Engine-Port/Greet-core/src/graphics/models/EntityModel.h ../Greet-Engine-Port/Greet-core/src/graphics/models/Material.h ../Greet-Engine-Port/Greet-core/src/graphics/shaders/ShaderFactory.h ../Greet-Engine-Port/Greet-core/src/graphics/models/MeshFactory.h ../Greet-Engine-Port/Greet-core/src/graphics/renderers/BatchRenderer3D.h ../Greet-Engine-Port/Greet-core/src/utils/OBJUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/ImageFactory.h ../Greet-Engine-Port/Greet-core/src/input/Input.h ../Greet-Engine-Port/Greet-core/src/input/InputDefines.h ../Greet-Engine-Port/Greet-core/src/internal/App.h ../Greet-Engine-Port/Greet-core/src/internal/GreetGL.h ../Greet-Engine-Port/Greet-core/src/utils/LogUtils.h ../Greet-Engine-Port/Greet-core/src/math/Plane.h ../Greet-Engine-Port/Greet-core/src/utils/AABBUtils.h ../Greet-Engine-Port/Greet-core/src/utils/ColorUtils.h ../Greet-Engine-Port/Greet-core/src/utils/Noise.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSON.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONArray.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONLoader.h ../Greet-Engine-Port/Greet-core/src/utils/json/JSONObject.h ../Greet-Engine-Port/Greet-core/src/utils/xml/XMLException.h src/LineRenderer.h src/TestWorld.h src/MCMesh.h src/MCPointData.h src/Voxels.h src/PlayerCamera.h src/physics/PhysicsEngine.h src/physics/PhysicsBody.h src/World.h src/Chunk.h src/RayCast.h src/Player.h src/Inventory.h src/InventoryScene.h src/TerrainCursor.h src/demo/MarchingDemo.h src/demo/Cube.h
$(info -[85%]- $<)
$(CC) $(CFLAGS) -o $@ $<
$(OBJPATH)/PhysicsBody.o : src/physics/PhysicsBody.cpp src/physics/PhysicsBody.h ../Greet-Engine-Port/Greet-core/src/math/Vec3.h ../Greet-Engine-Port/Greet-core/src/logging/Log.h ../Greet-Engine-Port/Greet-core/src/logging/LogLevel.h ../Greet-Engine-Port/Greet-core/src/logging/Logger.h ../Greet-Engine-Port/Greet-core/src/logging/LogStream.h ../Greet-Engine-Port/Greet-core/src/math/MathFunc.h ../Greet-Engine-Port/Greet-core/src/common/Types.h ../Greet-Engine-Port/Greet-core/src/math/Quaternion.h ../Greet-Engine-Port/Greet-core/src/math/Vec4.h
$(info -[92%]- $<)
$(CC) $(CFLAGS) -o $@ $<
$(OBJPATH)/PhysicsEngine.o : src/physics/PhysicsEngine.cpp ../Greet-Engine-Port/Greet-core/src/logging/Log.h ../Greet-Engine-Port/Greet-core/src/logging/LogLevel.h ../Greet-Engine-Port/Greet-core/src/logging/Logger.h ../Greet-Engine-Port/Greet-core/src/logging/LogStream.h src/physics/PhysicsEngine.h ../Greet-Engine-Port/Greet-core/src/graphics/cameras/Camera3D.h ../Greet-Engine-Port/Greet-core/src/event/Event.h ../Greet-Engine-Port/Greet-core/src/utils/Utils.h ../Greet-Engine-Port/Greet-core/src/common/Types.h ../Greet-Engine-Port/Greet-core/src/math/Vec2.h ../Greet-Engine-Port/Greet-core/src/math/Vec3.h ../Greet-Engine-Port/Greet-core/src/math/MathFunc.h ../Greet-Engine-Port/Greet-core/src/math/Quaternion.h ../Greet-Engine-Port/Greet-core/src/math/Vec4.h ../Greet-Engine-Port/Greet-core/src/event/ViewportEvent.h ../Greet-Engine-Port/Greet-core/src/event/WindowEvent.h ../Greet-Engine-Port/Greet-core/src/graphics/RenderCommand.h ../Greet-Engine-Port/Greet-core/src/graphics/Color.h ../Greet-Engine-Port/Greet-core/src/graphics/Window.h ../Greet-Engine-Port/Greet-core/src/input/Joystick.h ../Greet-Engine-Port/Greet-core/src/math/Maths.h ../Greet-Engine-Port/Greet-core/src/math/Mat3.h ../Greet-Engine-Port/Greet-core/src/math/Mat4.h ../Greet-Engine-Port/Greet-core/src/graphics/shaders/Shader.h ../Greet-Engine-Port/Greet-core/src/common/Memory.h ../Greet-Engine-Port/Greet-core/src/utils/FileUtils.h ../Greet-Engine-Port/Greet-core/src/utils/HotSwapping.h ../Greet-Engine-Port/Greet-core/src/utils/Resource.h ../Greet-Engine-Port/Greet-core/src/utils/UUID.h ../Greet-Engine-Port/Greet-core/src/math/Line.h ../Greet-Engine-Port/Greet-core/src/graphics/models/Material.h ../Greet-Engine-Port/Greet-core/src/graphics/shaders/ShaderFactory.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture2D.h ../Greet-Engine-Port/Greet-core/src/graphics/textures/Texture.h ../Greet-Engine-Port/Greet-core/src/utils/ImageUtils.h ../Greet-Engine-Port/Greet-core/src/graphics/models/Mesh.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/Buffer.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/VertexArray.h ../Greet-Engine-Port/Greet-core/src/graphics/buffers/VertexBuffer.h ../Greet-Engine-Port/Greet-core/src/graphics/models/MeshData.h ../Greet-Engine-Port/Greet-core/src/common/Pointer.h ../Greet-Engine-Port/Greet-core/src/graphics/models/MeshFactory.h src/physics/PhysicsBody.h
$(info -[100%]- $<)
$(CC) $(CFLAGS) -o $@ $<