From be7b7c2004f656ef42981527f850f8f7836384c8 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Wed, 2 Oct 2019 16:22:14 +0300 Subject: [PATCH] Simplifying because of modules --- Makefile | 16 ---------------- .../gohpenc/base32.go => base32.go | 0 src/cypherpunks.ru/gohpenc/go.mod => go.mod | 0 src/cypherpunks.ru/gohpenc/go.sum => go.sum | 0 src/cypherpunks.ru/gohpenc/main.go => main.go | 0 5 files changed, 16 deletions(-) delete mode 100644 Makefile rename src/cypherpunks.ru/gohpenc/base32.go => base32.go (100%) rename src/cypherpunks.ru/gohpenc/go.mod => go.mod (100%) rename src/cypherpunks.ru/gohpenc/go.sum => go.sum (100%) rename src/cypherpunks.ru/gohpenc/main.go => main.go (100%) 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 -- 2.44.0