diff options
author | latex <latex@disroot.org> | 2023-02-06 17:22:26 +0100 |
---|---|---|
committer | latex <latex@disroot.org> | 2023-02-06 17:22:26 +0100 |
commit | 79c59f93b7461082cf4aec3025257560fc788c69 (patch) | |
tree | 040e2923b479643fa6f8abad157d9a01fcec07ef | |
parent | 9df686fe72799f5ffc10b49027c37ebd1811eda8 (diff) | |
download | libumumble-79c59f93b7461082cf4aec3025257560fc788c69.tar.gz |
make install more configurable
-rw-r--r-- | Makefile | 11 | ||||
-rw-r--r-- | config.mk | 2 |
2 files changed, 9 insertions, 4 deletions
diff --git a/Makefile b/Makefile index 65c0a9c..0e60318 100644 --- a/Makefile +++ b/Makefile @@ -38,13 +38,16 @@ clean: rm -rf $(SNAME) $(DNAME) $(BUILD_DIR) src/*.pb.h src/*.pb.c $(MAKE) -C tests clean -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 diff --git a/config.mk b/config.mk index 18edba8..8a70d53 100644 --- a/config.mk +++ b/config.mk @@ -1,6 +1,8 @@ ifeq ($(PREFIX),) PREFIX = /usr/local endif +INCLUDEDIR = $(PREFIX)/include +LIBDIR = $(PREFIX)/lib BUILD_DIR = build NAME = libumumble |