#################################################### # Build Application #################################################### build: go build -o diskutil #################################################### # Perform nothing #################################################### all: @echo "Nothing to do." #################################################### # help feature #################################################### help: @echo '' @echo 'Usage: make [TARGET]' @echo 'Targets:' @echo ' build go build -o diskutil' @echo ' all nothing to do' @echo ''