From 45f0fbef18856ccfaf14f24d536d5e01b3f491ad Mon Sep 17 00:00:00 2001 From: Bastian Blank Date: Tue, 13 Sep 2011 15:10:56 +0000 Subject: [PATCH] debian/build/tools: Add Makefiles. svn path=/dists/trunk/linux-tools/; revision=18088 --- debian/build/tools/Makefile | 4 ++++ debian/build/tools/perf/Makefile | 10 ++++++++++ 2 files changed, 14 insertions(+) create mode 100644 debian/build/tools/Makefile create mode 100644 debian/build/tools/perf/Makefile diff --git a/debian/build/tools/Makefile b/debian/build/tools/Makefile new file mode 100644 index 000000000..561fc1f61 --- /dev/null +++ b/debian/build/tools/Makefile @@ -0,0 +1,4 @@ +SUBDIRS = \ + perf + +include ../Makefile.inc diff --git a/debian/build/tools/perf/Makefile b/debian/build/tools/perf/Makefile new file mode 100644 index 000000000..fc5dfe53b --- /dev/null +++ b/debian/build/tools/perf/Makefile @@ -0,0 +1,10 @@ +OUTDIR = tools/perf + +include ../../Makefile.inc + +all: + -mkdir out + make -C $(top_srcdir)/tools/perf O=$(CURDIR)/out + +clean: + rm -rf out