summaryrefslogtreecommitdiff
path: root/drivers/gator/driver/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gator/driver/Makefile')
-rw-r--r--drivers/gator/driver/Makefile56
1 files changed, 0 insertions, 56 deletions
diff --git a/drivers/gator/driver/Makefile b/drivers/gator/driver/Makefile
deleted file mode 100644
index d6dfeebf102..00000000000
--- a/drivers/gator/driver/Makefile
+++ /dev/null
@@ -1,56 +0,0 @@
-ifneq ($(KERNELRELEASE),)
-
-# Uncomment the following line to enable kernel stack unwinding within gator, or update gator_backtrace.c
-# EXTRA_CFLAGS += -DGATOR_KERNEL_STACK_UNWINDING
-
-obj-$(CONFIG_GATOR) := gator.o
-
-gator-y := gator_main.o \
- gator_events_irq.o \
- gator_events_sched.o \
- gator_events_net.o \
- gator_events_block.o \
- gator_events_meminfo.o \
- gator_events_power.o \
- gator_events_perf_pmu.o
-
-gator-y += gator_events_mmaped.o
-
-ifneq ($(GATOR_WITH_MALI_SUPPORT),)
-ifeq ($(GATOR_WITH_MALI_SUPPORT),MALI_T6xx)
-gator-y += gator_events_mali_t6xx.o
-else
-gator-y += gator_events_mali.o
-endif
-EXTRA_CFLAGS += -DMALI_SUPPORT=$(GATOR_WITH_MALI_SUPPORT)
-endif
-
-gator-$(CONFIG_ARM) += gator_events_armv6.o \
- gator_events_armv7.o \
- gator_events_l2c-310.o \
- gator_events_scorpion.o
-
-$(obj)/gator_main.o: gator_events.h
-
-clean-files := gator_events.h
-
- chk_events.h = :
- quiet_chk_events.h = echo ' CHK $@'
-silent_chk_events.h = :
-gator_events.h: FORCE
- @$($(quiet)chk_events.h)
- $(Q)cd $(srctree)/$(src) ; $(CONFIG_SHELL) gator_events.sh $(objtree)/$(obj)/$@
-
-else
-
-all:
- @echo
- @echo "usage:"
- @echo " make -C <kernel_build_dir> M=\`pwd\` ARCH=arm CROSS_COMPILE=<...> modules"
- @echo
- $(error)
-
-clean:
- rm -f *.o .*.cmd gator_events.h modules.order Module.symvers gator.ko gator.mod.c
-
-endif