zeed/Makefile

11 lines
164 B
Makefile

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