]> Cypherpunks.ru repositories - gohpenc.git/blobdiff - Makefile
Simplifying because of modules
[gohpenc.git] / Makefile
diff --git a/Makefile b/Makefile
deleted file mode 100644 (file)
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)