Created
September 6, 2020 08:29
-
-
Save mig-hub/1010adb583a49d22c078329b99f20fb8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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