diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2011-10-18 20:36:04 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-10-18 20:36:04 (GMT) |
commit | 5f9819c70991e7a4c68fb620fcfa80c5b38c4f86 (patch) | |
tree | d1aed62daf7aa32fec652c78409147c18e2a7f0b | |
parent | 74116f561add85d03faabda3200e824dfeb9b6fe (diff) | |
download | linux-fsl-qoriq-5f9819c70991e7a4c68fb620fcfa80c5b38c4f86.tar.xz |
Staging: wlags49_h25: Makefile: remove unneeded stuff
There's a lot of unused and unneeded things in this makefile, so delete
it all.
Reported-by: Grant Likely <grant.likely@secretlab.ca>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/staging/wlags49_h25/Makefile | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/drivers/staging/wlags49_h25/Makefile b/drivers/staging/wlags49_h25/Makefile index fe82929..6e0159d 100644 --- a/drivers/staging/wlags49_h25/Makefile +++ b/drivers/staging/wlags49_h25/Makefile @@ -11,7 +11,6 @@ # # If you want to build AP support (untested), comment out -DSTA_ONLY -INSTALLDIR := /lib/modules/$(shell uname -r)/kernel/drivers/net/wireless ccflags-y := -I$(KERNELDIR)/include ccflags-y += -I$(src) \ -DBUS_PCMCIA \ @@ -38,10 +37,6 @@ $(WLNAME)-y += ap_h25.o endif endif -# If KERNELRELEASE is defined, we've been invoked from the -# kernel build system and can use its language. -ifneq ($(KERNELRELEASE),) - obj-m += $(WLNAME).o $(WLNAME)-y += wl_profile.o \ @@ -58,23 +53,3 @@ $(WLNAME)-y += wl_profile.o \ $(WLNAME)-$(CONFIG_SYSFS) += wl_sysfs.o -# Otherwise we were called directly from the command -# line; invoke the kernel build system. -else - KERNELDIR ?= /lib/modules/$(shell uname -r)/build - PWD := $(shell pwd) - -default: - $(MAKE) -C $(KERNELDIR) M=$(PWD) modules -endif - -clean: - rm -fr *.o *.ko *.mod.c *.mod.o .*.*.cmd Module.symvers \ - Module.markers modules.order .tmp_versions - -install: default - -rmmod $(WLNAME) - install -d $(INSTALLDIR) - install -m 0644 -o root -g root $(WLNAME).ko $(INSTALLDIR) - /sbin/depmod -aq - |