1CXX_SOURCES := main-copy.cpp
2
3include Makefile.rules
4
5
6# Copy file into the build folder to enable the test to modify it.
7main-copy.cpp: main.cpp
8	cp -f $< $@
9