
rule rule1:
	input: 'test.in'
	output: 'test.out'
	shell: 
		'cp {input} {output}'

rule rule2:
	input: 'test.in'
	output: 'test2.out'
	shell:
		'cp {input} {output}'
