diff options
author | latex <latex@disroot.org> | 2023-02-06 17:31:43 +0100 |
---|---|---|
committer | latex <latex@disroot.org> | 2023-02-06 17:31:43 +0100 |
commit | 5712693842c4271df63218f0aba5752e6cdfb940 (patch) | |
tree | ed7588bb8b371d36089964b8c016bcbc5967c28d /Makefile | |
parent | 81dc020a82cb14bf0af8e8d9c0dc98ce7d17ec6c (diff) | |
download | uv_link_t-master.tar.gz |
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Makefile b/Makefile index 85fbc84..c9ddf66 100644 --- a/Makefile +++ b/Makefile @@ -28,13 +28,16 @@ $(BUILD_DIR)/%.c.o: %.c clean: rm -rf $(SNAME) $(DNAME) $(BUILD_DIR) -install-header: - install -m 644 $(H) $(DESTDIR)$(PREFIX)/include +install-header: $(H) + install -d $(DESTDIR)$(INCLUDEDIR) + install -m 644 $^ $(DESTDIR)$(INCLUDEDIR) install-static: $(SNAME) - install -m 755 $(SNAME) $(DESTDIR)$(PREFIX)/lib64 + install -d $(DESTDIR)$(LIBDIR) + install -m 755 $^ $(DESTDIR)$(LIBDIR) install-shared: $(DNAME) - install -m 755 $(DNAME) $(DESTDIR)$(PREFIX)/lib64 + install -d $(DESTDIR)$(LIBDIR) + install -m 755 $^ $(DESTDIR)$(LIBDIR) install: install-header install-static install-shared |