.PHONY: all
all:
	make -C src all
	mv src/convert bin/
	mv src/sw bin/
clean:
	make -C src clean
	rm -rf *~
