Skip to content

Instantly share code, notes, and snippets.

@mig-hub
Created September 6, 2020 08:29
Show Gist options
  • Save mig-hub/1010adb583a49d22c078329b99f20fb8 to your computer and use it in GitHub Desktop.
Save mig-hub/1010adb583a49d22c078329b99f20fb8 to your computer and use it in GitHub Desktop.
.PHONY: css
css: $(CSS_FILES) ## Build all CSS files from SCSS
$(CSS_DIR):
mkdir -p $@
$(CSS_DIR)/%.css: $(SCSS_DIR)/%.scss $(SCSS_INCLUDES_DIR)/_*.scss | $(CSS_DIR)
sass --load-path=$(SCSS_INCLUDES_DIR) --style=compressed --scss $< $@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment