.PHONY: normal bug clean

normal: sort_normal.c clean
	cp $< sort.c

bug: sort_bug.c clean
	cp $< sort.c

clean:
	rm -f sort.c
