aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoe Richey joerichey@google.com <joerichey@google.com>2017-10-06 14:25:07 -0700
committerJoseph Richey <joerichey94@gmail.com>2017-10-19 02:22:23 -0700
commitb96f72d63641c8dcfe5e142ecd5d6c9f9a7d5778 (patch)
treebc15a81c4af5cf75dbf3aa6ed7c9d21418b5226f /Makefile
parent7d16a9fb37b8a6204d76f187444330b8faae4e4e (diff)
ext4: start refactor
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 80354b3..eb57d09 100644
--- a/Makefile
+++ b/Makefile
@@ -113,7 +113,7 @@ $(PAM_MODULE): $(SRC_FILES)
.PHONY: clean
clean:
- rm -f $(NAME) $(PAM_MODULE) $(IMAGE)
+ rm -f $(NAME) $(EXT4_NAME) $(PAM_MODULE) $(IMAGE)
# Make sure go files build and tests pass.
.PHONY: test
@@ -169,7 +169,7 @@ install_pam: $(PAM_MODULE)
$(INSTALL) -d $(PAM_CONFIG_DIR)
$(INSTALL) $(PAM_NAME)/config $(PAM_CONFIG_DIR)/$(NAME)
-install: install_bin install_ext4 install_pam
+install: install_bin install_ext4 install_pam
uninstall:
rm -f $(DESTDIR)/$(NAME) $(PAM_MODULE_DIR)/$(PAM_MODULE) $(PAM_CONFIG_DIR)/$(NAME)
@@ -180,7 +180,7 @@ go-tools:
go get -u github.com/golang/protobuf/protoc-gen-go
go get -u github.com/golang/lint/golint
go get -u github.com/kardianos/govendor
- go get -u golang.org/x/tools/cmd/goimports
+ go get -u sourcegraph.com/sqs/goreturns
go get -u honnef.co/go/tools/cmd/megacheck
##### Setup/Teardown for integration tests (need root permissions) #####