diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..607458b --- /dev/null +++ b/Makefile @@ -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