diff options
author | Alexey Yerin <yyp@disroot.org> | 2023-05-28 17:53:57 +0300 |
---|---|---|
committer | Alexey Yerin <yyp@disroot.org> | 2023-05-28 17:53:57 +0300 |
commit | 616abb352df95663d9aefa9fc3432f52a6dc0d1d (patch) | |
tree | 6280618a1f77629beb607bfccbf220a725233736 | |
parent | 16e730f540acfe6a0015464c81831cdfacaf107b (diff) |
Fix Makefile
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 2b41877..0038792 100644 --- a/Makefile +++ b/Makefile @@ -15,14 +15,14 @@ THIRDPARTYDIR = $(HARESRCDIR)/third-party all: @true -install: install-core +install: @for mod in $(MODULES3); do \ printf "installing %s\n" "$$mod"; \ mkdir -p "$(DESTDIR)$(THIRDPARTYDIR)/$$mod"; \ install -m644 "$(BINDINGS_DIR)/$$mod"/* "$(DESTDIR)$(THIRDPARTYDIR)/$$mod"; \ done -install4: install-core +install4: @for mod in $(MODULES4); do \ printf "installing %s\n" "$$mod"; \ mkdir -p "$(DESTDIR)$(THIRDPARTYDIR)/$$mod"; \ |