diff options
Diffstat (limited to 'rfile')
| -rw-r--r-- | rfile | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -8,8 +8,10 @@ @inp=rf.c @out=rf @opts=-Wall -Wextra -pedantic -std=c99 +@editor=$EDITOR # build +@: building rf.. @cc @inp -o @out @opts # install section @@ -22,6 +24,11 @@ install { # clean section clean { + @: removing rf binary.. rm @out } +edit { + @: opening default editor.. + @editor rf.c +} |