termaze

maze generation and pathfinding visualizer
git clone git://git.yotsev.xyz/termaze.git
Log | Files | Refs | README | LICENSE

commit 162583c7a1ebb00854adbf76bf291e21e6d106f8
parent fe9a71d7f5564df0e610fa7054469e53b7309f75
Author: Petar Yotsev <petar@yotsev.xyz>
Date:   Sat, 22 Aug 2020 12:05:40 +0100

Remove CLI11 dependency on main in Makefile

The library takes more time to compile than the rest of the progrm and
is unneeded in the current stage of development. A more minimal approach
will be applied in the future.

Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -8,7 +8,7 @@ $(EXEC): main.o ui.o maze_gen.o pathfinding.o $(CC) $(CC_FLAGS) main.o maze_gen.o pathfinding.o ui.o timer.o -o $(EXEC) -main.o: main.cpp maze_gen.o pathfinding.o ui.o timer.o state.hpp vec2.hpp colors.hpp CLI11.hpp +main.o: main.cpp maze_gen.o pathfinding.o ui.o timer.o state.hpp vec2.hpp colors.hpp $(CC) -c $(CC_FLAGS) maze_gen.o pathfinding.o ui.o main.cpp ui.o: ui.cpp maze_gen.o pathfinding.o state.hpp colors.hpp