From f0ac720719a60010b3b567f9aead9a872f97f847 Mon Sep 17 00:00:00 2001 From: Patrick Tudor Date: Sun, 19 Jan 2020 23:07:23 -0800 Subject: [PATCH] add html directory to install target. Debian-default path hard-coded. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index c92144a..e8a105a 100644 --- a/Makefile +++ b/Makefile @@ -50,6 +50,9 @@ install: $(PROGRAMS) $(INSTALL) -s -m 755 -D reporter $(DESTDIR)$(prefix)/bin/reporter $(INSTALL) -s -m 755 -D galmonmon $(DESTDIR)$(prefix)/bin/galmonmon $(INSTALL) -s -m 755 -D testrunner $(DESTDIR)$(prefix)/bin/testrunner + @echo "using cp instead of install because recursive directories of ascii" + mkdir -p $(DESTDIR)$(prefix)/share/package/galmon + cp -a html $(DESTDIR)$(prefix)/share/package/galmon/ decrypt: decrypt.o bits.o ext/fmt-5.2.1/src/format.o $(CXX) -std=gnu++17 $^ -o $@