Skip to content

Instantly share code, notes, and snippets.

@shazow
Last active August 7, 2016 21:47
Show Gist options
  • Save shazow/483ccd798f054095a5e5a868f6f0b773 to your computer and use it in GitHub Desktop.
Save shazow/483ccd798f054095a5e5a868f6f0b773 to your computer and use it in GitHub Desktop.
Makefile for my SCSS stuff
" 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()
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