diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d23de90 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST))) +cur_dir := $(notdir $(patsubst %/,%,$(dir $(mkfile_path)))) + +repo_dir := $(dir $(mkfile_path)) +bin_dir := $(repo_dir)bin +bin_file_name := 10-$(cur_dir) + +all: + $(bin_dir)/pycombine -e '(Makefile|bin|README.md)' "$(HOME)" "$(repo_dir)" + echo 'PATH=$(bin_dir):$$PATH' > ~/.environment.d/$(bin_file_name) |