Add Makefile

This commit is contained in:
Matúš Púll 2025-07-26 09:13:53 +02:00
parent f715b02e8d
commit 451c28a203

14
Makefile Normal file
View file

@ -0,0 +1,14 @@
CPP_FILES = \
main.cpp \
format.cpp \
gen.cpp \
input.cpp \
solver.cpp \
validate.cpp
HPP_FILES = \
global.hpp \
solver.hpp
all: $(CPP_FILES) $(HPP_FILES)
g++ $(CPP_FILES) -o logik