diskutil/Makefile

20 lines
569 B
Makefile
Raw Permalink Normal View History

2021-12-31 06:32:24 +00:00
####################################################
# 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 ''