I'm writing my first Makefile...
This question is similar to this one but I want to point the Makefile to a specific directory of .js and .css files.. how do you do this?
I have this so far:
JS_TARGETS = $(find path/to/js/ -name '*.js')
CSS_TARGETS = $(find path/to/css/ -name '*.css')
.DEFAULT_GOAL := all
which doesn't work:
make: *** No rule to make target `all'. Stop.
Must be simple for someone who makes lots of Makefiles! Thanks :).