cheat-sheets

Cheat sheets for various stuff

View the Project on GitHub bertvv/cheat-sheets

Makefiles

See my Makefile template: https://github.com/bertvv/dotfiles/blob/master/.vim/templates/make

Special targets

Special macros

Macros are defined with NAME = VALUE and are expanded with $(NAME).

Inference rules

E.g. you want to convert .foo files into .bar

.SUFFIXES: .foo .bar
.foo.bar:
    foo2bar $<

References