[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4F28DF9B.40702@gmail.com>
Date: Wed, 01 Feb 2012 14:45:47 +0800
From: Cong Wang <xiyou.wangcong@...il.com>
To: Dave Young <dyoung@...hat.com>
CC: linux-kernel@...r.kernel.org
Subject: Re: [PATCH] move vm tools from Documentation/vm/ to tools/
On 02/01/2012 02:34 PM, Dave Young wrote:
> tools/ is the better place for vm tools which are used by many people.
> Moving them to tools also make them open to more users instead of hide in
> Documentation folder.
Well, hugepage-mmap, hugepage-shm, and map_hugetlb are examples, not
really tools. So, only page-types is probably a tool, but I leave this
to Fengguang to decide.
>
> Also fixed several coding style problem.
Make it another patch for people to review. :)
[...]
> diff --git a/tools/vm/Makefile b/tools/vm/Makefile
> new file mode 100644
> index 0000000..b4f9fdd
> --- /dev/null
> +++ b/tools/vm/Makefile
> @@ -0,0 +1,11 @@
> +# Makefile for vm tools
> +
> +CC = $(CROSS_COMPILE)gcc
> +CFLAGS = -Wall -Wextra
> +
> +all: page-types hugepage-mmap hugepage-shm map_hugetlb
> +%: %.c
> + $(CC) $(CFLAGS) -o $@ $^
> +
> +clean:
> + $(RM) page-types hugepage-mmap hugepage-shm map_hugetlb
Is $(RM) defined?
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists