From 2c52eca8727df744d093703bbcbd87fc39d57d30 Mon Sep 17 00:00:00 2001 From: "Joe Richey joerichey@google.com" Date: Wed, 28 Jun 2017 13:57:55 -0700 Subject: Finalize import paths and documentation This commit changes all the internal import paths from `fscrypt/foo` to `github.com/google/fscrypt/foo` so that it can be built once we release externaly. The documentation in README.md is updated accordingly. Also, the README has a note noting that we do not make any guarantees about project stability before 1.0 (when it ships with Ubuntu). Change-Id: I6ba86e442c74057c8a06ba32a42e17f94833e280 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 09d5558..dc24e67 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ VERSION = 0.1.0 BUILD_TIME = $(shell date) CFLAGS += -O2 -Wall -CMD_DIR = $(NAME)/cmd/$(NAME) +CMD_DIR = github.com/google/$(NAME)/cmd/$(NAME) # The code below lets the caller of the makefile change the build flags for # fscrypt in a familiar manner. For example, to force the program to statically @@ -75,7 +75,7 @@ format: @find . -name "*.h" -o -name "*.c" -not -path "./vendor/*" | xargs clang-format -i -style=Google install: - go install $(CMD_DIR) + go install $(GOFLAGS) $(CMD_DIR) install_all: govendor install $(GOFLAGS) +local -- cgit v1.2.3