.PHONY: all clean

all: 
	mkdir -p build
	cp src/*.css build 
	cp -r res/* build 
	python src/site_gen.py > build/index.html
	echo "[!] Done"

open: all
	firefox build/index.html

clean:
	@rm -fr build
