Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | From af93e580d005a2bba6ed36528003af4cf631adb8 Mon Sep 17 00:00:00 2001 |
| 2 | Message-Id: <af93e580d005a2bba6ed36528003af4cf631adb8.1347419597.git.dvhart@linux.intel.com> |
| 3 | In-Reply-To: <66765522b634952346f1a3ab7d00c7222a1f9361.1347419597.git.dvhart@linux.intel.com> |
| 4 | References: <66765522b634952346f1a3ab7d00c7222a1f9361.1347419597.git.dvhart@linux.intel.com> |
| 5 | From: Darren Hart <dvhart@linux.intel.com> |
| 6 | Date: Tue, 11 Sep 2012 14:51:10 -0700 |
| 7 | Subject: [PATCH 2/2] rt-tests: Break out install_hwlatdetect |
| 8 | |
| 9 | Upstream-Status: Submitted |
| 10 | |
| 11 | Allow hwlatdetect to be installed independently of the rest of the |
| 12 | tests. This is convenient for build systems that package it separately |
| 13 | due to the python dependency. |
| 14 | |
| 15 | Signed-off-by: Darren Hart <dvhart@linux.intel.com> |
| 16 | CC: Clark Williams <williams@redhat.com> |
| 17 | CC: John Kacur <jkacur@redhat.com> |
| 18 | --- |
| 19 | Makefile | 18 +++++++++++------- |
| 20 | 1 file changed, 11 insertions(+), 7 deletions(-) |
| 21 | |
| 22 | diff --git a/Makefile b/Makefile |
| 23 | index 61e2f9f..636e63b 100644 |
| 24 | --- a/Makefile |
| 25 | +++ b/Makefile |
| 26 | @@ -119,21 +119,15 @@ changelog: |
| 27 | git log >ChangeLog |
| 28 | |
| 29 | .PHONY: install |
| 30 | -install: all |
| 31 | +install: all install_hwlatdetect |
| 32 | mkdir -p "$(DESTDIR)$(bindir)" "$(DESTDIR)$(mandir)/man4" |
| 33 | mkdir -p "$(DESTDIR)$(srcdir)" "$(DESTDIR)$(mandir)/man8" |
| 34 | cp $(TARGETS) "$(DESTDIR)$(bindir)" |
| 35 | - if test -n "$(PYLIB)" ; then \ |
| 36 | - install -D -m 755 src/hwlatdetect/hwlatdetect.py $(DESTDIR)$(PYLIB)/hwlatdetect.py ; \ |
| 37 | - rm -f "$(DESTDIR)$(bindir)/hwlatdetect" ; \ |
| 38 | - ln -s $(PYLIB)/hwlatdetect.py "$(DESTDIR)$(bindir)/hwlatdetect" ; \ |
| 39 | - fi |
| 40 | install -D -m 644 src/backfire/backfire.c "$(DESTDIR)$(srcdir)/backfire/backfire.c" |
| 41 | install -m 644 src/backfire/Makefile "$(DESTDIR)$(srcdir)/backfire/Makefile" |
| 42 | gzip src/backfire/backfire.4 -c >"$(DESTDIR)$(mandir)/man4/backfire.4.gz" |
| 43 | gzip src/cyclictest/cyclictest.8 -c >"$(DESTDIR)$(mandir)/man8/cyclictest.8.gz" |
| 44 | gzip src/pi_tests/pi_stress.8 -c >"$(DESTDIR)$(mandir)/man8/pi_stress.8.gz" |
| 45 | - gzip src/hwlatdetect/hwlatdetect.8 -c >"$(DESTDIR)$(mandir)/man8/hwlatdetect.8.gz" |
| 46 | gzip src/ptsematest/ptsematest.8 -c >"$(DESTDIR)$(mandir)/man8/ptsematest.8.gz" |
| 47 | gzip src/sigwaittest/sigwaittest.8 -c >"$(DESTDIR)$(mandir)/man8/sigwaittest.8.gz" |
| 48 | gzip src/svsematest/svsematest.8 -c >"$(DESTDIR)$(mandir)/man8/svsematest.8.gz" |
| 49 | @@ -141,6 +135,16 @@ install: all |
| 50 | gzip src/backfire/sendme.8 -c >"$(DESTDIR)$(mandir)/man8/sendme.8.gz" |
| 51 | gzip src/hackbench/hackbench.8 -c >"$(DESTDIR)$(mandir)/man8/hackbench.8.gz" |
| 52 | |
| 53 | +.PHONY: install_hwlatdetect |
| 54 | +install_hwlatdetect: hwlatdetect |
| 55 | + if test -n "$(PYLIB)" ; then \ |
| 56 | + mkdir -p "$(DESTDIR)$(bindir)" "$(DESTDIR)$(mandir)/man8" ; \ |
| 57 | + install -D -m 755 src/hwlatdetect/hwlatdetect.py $(DESTDIR)$(PYLIB)/hwlatdetect.py ; \ |
| 58 | + rm -f "$(DESTDIR)$(bindir)/hwlatdetect" ; \ |
| 59 | + ln -s $(PYLIB)/hwlatdetect.py "$(DESTDIR)$(bindir)/hwlatdetect" ; \ |
| 60 | + gzip src/hwlatdetect/hwlatdetect.8 -c >"$(DESTDIR)$(mandir)/man8/hwlatdetect.8.gz" ; \ |
| 61 | + fi |
| 62 | + |
| 63 | .PHONY: release |
| 64 | release: clean changelog |
| 65 | mkdir -p releases |
| 66 | -- |
| 67 | 1.7.11.4 |
| 68 | |