Commit 6178e1e9 authored by Pietro Albini's avatar Pietro Albini

Fix Makefile not working the first time it was called

parent 3017f67d
......@@ -46,9 +46,12 @@ images_svg = $(patsubst %,$(DIR_BUILD)/%,$(shell find $(DIRS_IMAGES) -type f -na
.PHONY: build clean italy-theme
.PHONY: build clean italy-theme build-inner
build: italy-theme $(js) $(css) $(fonts_ttf) $(fonts_eot) $(fonts_woff) $(images_png) $(images_jpg) $(images_svg)
build: italy-theme
@$(MAKE) build-inner
build-inner: $(js) $(css) $(fonts_ttf) $(fonts_eot) $(fonts_woff) $(images_png) $(images_jpg) $(images_svg)
clean:
@rm -rf $(DIR_BUILD)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment