Add Makefile
This commit is contained in:
parent
f715b02e8d
commit
451c28a203
1 changed files with 14 additions and 0 deletions
14
Makefile
Normal file
14
Makefile
Normal 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
|
Loading…
Reference in a new issue