# rfile for rfile # greet the polite visitor with a box! @:! hello from rfile! # variables @cc=gcc @inp=rf.c @out=rf @opts=-Wall -Wextra -pedantic -std=c99 @editor=$EDITOR # build @: building rf.. @cc @inp -o @out @opts # install section install { rf @: installing rf.. sudo install -Dm755 @out /usr/bin/@out rf clean } # clean section clean { @: removing rf binary.. rm @out } edit { @: opening default editor.. @editor rf.c }