In your makefile, you manually copy files to the `output` directory: ``` Makefile output/%.css : %.css cp $< $@ ``` but this is exactly what the `support` parameter in `pillar.conf` is for: copying non-generated files to the `outputDirectory`. You may want to use that.