• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#
2# Copyright (c) Wipro Technologies Ltd, 2002.  All Rights Reserved.
3#
4# This program is free software; you can redistribute it and/or modify it
5# under the terms of version 2 of the GNU General Public License as
6# published by the Free Software Foundation.
7#
8# This program is distributed in the hope that it would be useful, but
9# WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11#
12# You should have received a copy of the GNU General Public License along
13# with this program; if not, write the Free Software Foundation, Inc.,
14# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
15#
16###########################################################################
17# name of file		 : Makefile		 		 	  #
18# description		 : make file for the delete_module(2) testcases	  #
19###########################################################################
20
21ifneq ($(KERNELRELEASE),)
22
23obj-m := dummy_del_mod.o dummy_del_mod_dep.o
24
25else
26
27top_srcdir		?= ../../../..
28
29include $(top_srcdir)/include/mk/testcases.mk
30
31REQ_VERSION_MAJOR	:= 2
32REQ_VERSION_PATCH	:= 6
33
34MAKE_TARGETS		:= delete_module01 delete_module02 delete_module03 \
35			   dummy_del_mod.ko dummy_del_mod_dep.ko
36
37include $(top_srcdir)/include/mk/module.mk
38include $(top_srcdir)/include/mk/generic_leaf_target.mk
39
40endif
41