11 lines
146 B
Makefile
11 lines
146 B
Makefile
|
build:
|
||
|
g++ -o tests-main \
|
||
|
*.cpp \
|
||
|
../src/replace.cpp \
|
||
|
../src/readfile.cpp
|
||
|
run:
|
||
|
./tests-main
|
||
|
all: build run
|
||
|
clean:
|
||
|
rm *.o tests-main
|