diff options
| author | Joe Richey joerichey@google.com <joerichey@google.com> | 2017-10-06 14:25:07 -0700 |
|---|---|---|
| committer | Joseph Richey <joerichey94@gmail.com> | 2017-10-19 02:22:23 -0700 |
| commit | b96f72d63641c8dcfe5e142ecd5d6c9f9a7d5778 (patch) | |
| tree | bc15a81c4af5cf75dbf3aa6ed7c9d21418b5226f /Makefile | |
| parent | 7d16a9fb37b8a6204d76f187444330b8faae4e4e (diff) | |
ext4: start refactor
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) ##### |