# 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 # build @cc @inp -o @out @opts # install section install { rf @: installing rf.. sudo install -Dm755 @out /usr/bin/@out rf clean } # clean section clean { rm @out }