diskutil/Makefile
2021-12-31 01:32:24 -05:00

20 lines
569 B
Makefile

####################################################
# 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 ''