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