Home | History | Annotate | Download | only in delete_module
      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 
     21 ifneq ($(KERNELRELEASE),)
     22 
     23 obj-m := dummy_del_mod.o dummy_del_mod_dep.o
     24 
     25 else
     26 
     27 top_srcdir		?= ../../../..
     28 
     29 include $(top_srcdir)/include/mk/testcases.mk
     30 
     31 REQ_VERSION_MAJOR	:= 2
     32 REQ_VERSION_PATCH	:= 6
     33 
     34 MAKE_TARGETS		:= delete_module01 delete_module02 delete_module03 \
     35 			   dummy_del_mod.ko dummy_del_mod_dep.ko
     36 
     37 include $(top_srcdir)/include/mk/module.mk
     38 include $(top_srcdir)/include/mk/generic_leaf_target.mk
     39 
     40 endif
     41