all:
	make -C color-view clean all
	make -C currency-converter clean all
	csi -script eggdoc-cocoa-app.scm > creating-a-cocoa-app.html

	rm -f ./Color\ View.app
	rm -f ./Currency\ Converter.app
	ln -s color-view/Color\ View.app .
	ln -s currency-converter/Currency\ Converter.app .

clean:
	make -C color-view clean
	make -C currency-converter clean
	rm -f ./Color\ View.app
	rm -f ./Currency\ Converter.app

