From c7e4281398ff14a02873df6675006aafffebe5fb Mon Sep 17 00:00:00 2001 From: handlerug Date: Tue, 29 Jun 2021 21:12:46 +0700 Subject: [PATCH] Remove unneeded flags from Makefile And remove the `help` target. Who the fuck runs `make help`?! --- Makefile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 59b3044..4605e60 100644 --- a/Makefile +++ b/Makefile @@ -4,10 +4,10 @@ run: build ./mycorrhiza ${WIKI} config_run: build - ./mycorrhiza -config-path "assets/config.ini" ${WIKI} + ./mycorrhiza ${WIKI} devconfig_run: build - ./mycorrhiza -config-path "assets/devconfig.ini" ${WIKI} + ./mycorrhiza ${WIKI} build: go generate @@ -15,7 +15,3 @@ build: test: go test . - -help: - echo "Read the Makefile to see what it can do. It is simple." -