yasnippet-snippets/snippets/makefile-mode/clean

10 lines
160 B
Plaintext
Raw Normal View History

# -*- mode: snippet -*-
# name: clean
# contributor: gbalats
# expand-env: ((yas-indent-line 'fixed))
# key: cl
# --
clean:
2015-09-29 14:21:27 +02:00
${1:rm -r ${2:\$(${3:OUTDIR})}}
2015-09-25 15:56:28 +02:00
$0