From 2b4a37459be54c83ac6ac6354cddec3e9fa796bf Mon Sep 17 00:00:00 2001 From: Blain Smith Date: Mon, 4 Sep 2023 10:09:17 -0400 Subject: [PATCH] move to subdirs --- Makefile | 6 +++--- +test.ha => log/logfmt/+test.ha | 0 logfmt.ha => log/logfmt/logfmt.ha | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename +test.ha => log/logfmt/+test.ha (100%) rename logfmt.ha => log/logfmt/logfmt.ha (100%) diff --git a/Makefile b/Makefile index 9390a98..1267a8b 100644 --- a/Makefile +++ b/Makefile @@ -19,10 +19,10 @@ check: $(HARE) test install: - mkdir -p $(DESTDIR)$(THIRDPARTYDIR)/logfmt - install -m644 * $(DESTDIR)$(THIRDPARTYDIR)/logfmt + mkdir -p $(DESTDIR)$(THIRDPARTYDIR)/log/logfmt + install -m644 * $(DESTDIR)$(THIRDPARTYDIR) uninstall: - rm -rf $(DESTDIR)$(THIRDPARTYDIR)/logfmt + rm -rf $(DESTDIR)$(THIRDPARTYDIR)/log/logfmt .PHONY: all clean check install uninstall \ No newline at end of file diff --git a/+test.ha b/log/logfmt/+test.ha similarity index 100% rename from +test.ha rename to log/logfmt/+test.ha diff --git a/logfmt.ha b/log/logfmt/logfmt.ha similarity index 100% rename from logfmt.ha rename to log/logfmt/logfmt.ha -- 2.45.2