xml-copy-editor-code/tests/Makefile

11 lines
146 B
Makefile
Raw Normal View History

2018-09-24 20:30:11 +02:00
build:
g++ -o tests-main \
*.cpp \
../src/replace.cpp \
../src/readfile.cpp
run:
./tests-main
all: build run
clean:
rm *.o tests-main