1build:
2	g++ -o tests-main \
3	  *.cpp \
4	  ../src/replace.cpp \
5	  ../src/readfile.cpp
6run:
7	./tests-main
8all: build run
9clean:
10	rm *.o tests-main
11