diff options
| author | Joseph Richey <joerichey94@gmail.com> | 2017-10-05 04:55:01 -0700 |
|---|---|---|
| committer | Joseph Richey <joerichey94@gmail.com> | 2017-10-19 02:22:23 -0700 |
| commit | 7d16a9fb37b8a6204d76f187444330b8faae4e4e (patch) | |
| tree | 5fe74c7ba686715f1cf754896db639f2d6a4df38 /Makefile | |
| parent | ef2407fd0ae0ccc31cd894f0e2f84e0a871547a4 (diff) | |
ext4: Build working, args parsing
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 24 |
1 files changed, 17 insertions, 7 deletions
@@ -19,6 +19,7 @@ RELEASE_VERSION = 0.2.0 NAME = fscrypt +EXT4_NAME = $(NAME)-ext4 PAM_NAME = pam_$(NAME) PAM_MODULE = $(PAM_NAME).so @@ -27,8 +28,10 @@ DESTDIR ?= /usr/local/bin PAM_MODULE_DIR ?= /lib/security PAM_CONFIG_DIR ?= /usr/share/pam-configs -CMD_PKG = github.com/google/$(NAME)/cmd/$(NAME) -PAM_PKG = github.com/google/$(NAME)/$(PAM_NAME) +PKG_DIR = github.com/google/$(NAME) +CMD_PKG = $(PKG_DIR)/cmd/$(NAME) +EXT4_PKG =$(PKG_DIR)/ext4 +PAM_PKG = $(PKG_DIR)/$(PAM_NAME) SRC_FILES = $(shell find . -type f -name '*.go' -o -name "*.h" -o -name "*.c") GO_FILES = $(shell find . -type f -name '*.go' -not -path "./vendor/*") @@ -95,12 +98,15 @@ override GO_FLAGS += --ldflags '$(GO_LINK_FLAGS)' .PHONY: default all -default: $(NAME) $(PAM_MODULE) +default: $(NAME) $(EXT4_NAME) $(PAM_MODULE) all: format lint default test $(NAME): $(SRC_FILES) go build $(GO_FLAGS) -o $(NAME) $(CMD_PKG) +$(EXT4_NAME): $(SRC_FILES) + go build $(GO_FLAGS) -o $(EXT4_NAME) $(EXT4_PKG) + $(PAM_MODULE): $(SRC_FILES) go build -buildmode=c-shared $(GO_FLAGS) -o $(PAM_MODULE) $(PAM_PKG) rm -f $(PAM_NAME).h @@ -130,8 +136,8 @@ update: # Format all the Go and C code .PHONY: format format-check format: - goimports -l -w $(GO_FILES) - clang-format -i -style=Google $(C_FILES) + @goreturns -l -w $(GO_FILES) + @clang-format -i -style=Google $(C_FILES) format-check: @goimports -d $(GO_FILES) \ @@ -148,18 +154,22 @@ lint: @megacheck -unused.exported $(GO_PKGS) ###### Installation commands ##### -.PHONY: install_bin install_pam install uninstall +.PHONY: install_bin install_ext4 install_pam install uninstall install_bin: $(NAME) $(INSTALL) -d $(DESTDIR) $(INSTALL) $(NAME) $(DESTDIR) +install_ext4: $(EXT4_NAME) + $(INSTALL) -d $(DESTDIR) + $(INSTALL) $(EXT4_NAME) $(DESTDIR) + install_pam: $(PAM_MODULE) $(INSTALL) -d $(PAM_MODULE_DIR) $(INSTALL) $(PAM_MODULE) $(PAM_MODULE_DIR) $(INSTALL) -d $(PAM_CONFIG_DIR) $(INSTALL) $(PAM_NAME)/config $(PAM_CONFIG_DIR)/$(NAME) -install: install_bin install_pam +install: install_bin install_ext4 install_pam uninstall: rm -f $(DESTDIR)/$(NAME) $(PAM_MODULE_DIR)/$(PAM_MODULE) $(PAM_CONFIG_DIR)/$(NAME) |