From 0460eb92b25b65a9e99ce4fd61d1536bff255331 Mon Sep 17 00:00:00 2001 From: Erwan Velu Date: Tue, 30 Jul 2013 11:54:45 +0200 Subject: [PATCH] Tree: Moving fio_generate_plots in tools/ As fio2gnplot.py & genfio are located in tools, it sounds better to put all the additional tools in the same directory. --- Makefile | 4 ++-- fio_generate_plots => tools/fio_generate_plots | 0 fio_generate_plots.1 => tools/fio_generate_plots.1 | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename fio_generate_plots => tools/fio_generate_plots (100%) rename fio_generate_plots.1 => tools/fio_generate_plots.1 (100%) diff --git a/Makefile b/Makefile index 8075eb2f..8494b27e 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ OPTFLAGS= -O3 -g -ffast-math CFLAGS = -std=gnu99 -Wwrite-strings -Wall -Wdeclaration-after-statement $(OPTFLAGS) $(EXTFLAGS) $(BUILD_CFLAGS) LIBS += -lm $(EXTLIBS) PROGS = fio -SCRIPTS = fio_generate_plots tools/plot/fio2gnuplot.py tools/genfio +SCRIPTS = tools/fio_generate_plots tools/plot/fio2gnuplot.py tools/genfio ifdef CONFIG_GFIO PROGS += gfio @@ -280,6 +280,6 @@ install: $(PROGS) $(SCRIPTS) FORCE $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir) $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1 - $(INSTALL) -m 644 fio_generate_plots.1 $(DESTDIR)$(mandir)/man1 + $(INSTALL) -m 644 tools/fio_generate_plots.1 $(DESTDIR)$(mandir)/man1 $(INSTALL) -m 755 -d $(DESTDIR)$(sharedir) $(INSTALL) -m 644 tools/plot/*gpm $(DESTDIR)$(sharedir)/ diff --git a/fio_generate_plots b/tools/fio_generate_plots similarity index 100% rename from fio_generate_plots rename to tools/fio_generate_plots diff --git a/fio_generate_plots.1 b/tools/fio_generate_plots.1 similarity index 100% rename from fio_generate_plots.1 rename to tools/fio_generate_plots.1 -- 2.25.1