From: Sergey Matveev Date: Wed, 2 Oct 2019 13:22:14 +0000 (+0300) Subject: Simplifying because of modules X-Git-Tag: v1.0.0^0 X-Git-Url: http://www.git.cypherpunks.ru/?p=gohpenc.git;a=commitdiff_plain;h=be7b7c2004f656ef42981527f850f8f7836384c8 Simplifying because of modules --- diff --git a/Makefile b/Makefile deleted file mode 100644 index 95f8740..0000000 --- a/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -GO ?= go -GOPATH ?= $(PWD)/gopath -SRC := $(PWD)/src/cypherpunks.ru/gohpenc -BIN := $(PWD)/bin - -all: $(BIN)/gohpenc - -$(BIN): - mkdir -p $(BIN) - -$(BIN)/gohpenc: $(BIN) - cd $(SRC) ; GOPATH=$(GOPATH) $(GO) build - mv $(SRC)/gohpenc bin - -clean: - rm -rf $(BIN) diff --git a/src/cypherpunks.ru/gohpenc/base32.go b/base32.go similarity index 100% rename from src/cypherpunks.ru/gohpenc/base32.go rename to base32.go diff --git a/src/cypherpunks.ru/gohpenc/go.mod b/go.mod similarity index 100% rename from src/cypherpunks.ru/gohpenc/go.mod rename to go.mod diff --git a/src/cypherpunks.ru/gohpenc/go.sum b/go.sum similarity index 100% rename from src/cypherpunks.ru/gohpenc/go.sum rename to go.sum diff --git a/src/cypherpunks.ru/gohpenc/main.go b/main.go similarity index 100% rename from src/cypherpunks.ru/gohpenc/main.go rename to main.go