Last active
August 7, 2016 21:47
-
-
Save shazow/483ccd798f054095a5e5a868f6f0b773 to your computer and use it in GitHub Desktop.
Makefile for my SCSS stuff
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
" Find the nearest Makefile and run it | |
function! MakeUp() | |
let makefile = findfile("Makefile", ".;") | |
if makefile != "" | |
silent exe "NeomakeSh make -C " . fnamemodify(makefile, ':p:h') | |
endif | |
endfunction | |
autocmd BufWritePost *.scss call MakeUp() |
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
all: scss | |
CSS_OUT = ../static/css/screen.css | |
SCSS_LIBS = ./lib/ | |
$(CSS_OUT): **.scss $(SCSS_LIBS) | |
sassc --style nested $(addprefix -I ,$(SCSS_LIBS)) screen.scss $(CSS_OUT) | |
scss: $(CSS_OUT) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment