Add Makefile for easier build

This commit is contained in:
Matúš Púll 2025-06-25 00:17:13 +02:00
parent e02dd9e729
commit b1b0d89e71

11
Makefile Normal file
View 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