diff --git a/runtime/GNUmakefile b/runtime/GNUmakefile index 8691fa7..216eee1 100644 --- a/runtime/GNUmakefile +++ b/runtime/GNUmakefile @@ -65,6 +65,12 @@ clean: clean-all: clean rm -f libgtest.a testHelper/GeneratedCode.cc +install: libNanoLog.a + install -d $(DESTDIR)$(PREFIX)/lib/ + install -m 644 libNanoLog.a $(DESTDIR)$(PREFIX)/lib/ + install -d $(DESTDIR)$(PREFIX)/include/ + install -m 644 NanoLogCpp17.h $(DESTDIR)$(PREFIX)/include/ + install -m 755 decompressor $(DESTDIR)$(PREFIX)/bin/ # Automatic rules to build *.h dependencies. Taken from # https://stackoverflow.com/questions/2394609/makefile-header-dependencies depend: .depend