Add Makefile for easier build
This commit is contained in:
parent
e02dd9e729
commit
b1b0d89e71
1 changed files with 11 additions and 0 deletions
11
Makefile
Normal file
11
Makefile
Normal file
|
@ -0,0 +1,11 @@
|
|||
CPP_FILES = \
|
||||
main.cpp \
|
||||
treap.cpp \
|
||||
selection.cpp \
|
||||
editor.cpp
|
||||
|
||||
HPP_FILES = \
|
||||
everything.hpp
|
||||
|
||||
all: $(CPP_FILES) $(HPP_FILES)
|
||||
g++ $(CPP_FILES) -lncurses -o a
|
Loading…
Reference in a new issue