Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions runtime/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down