#
# tn40xx_ Driver
#
# Makefile for the tx40xx Linux driver

#######################################
# Build Configuration:
#######################################

PWD := $(shell pwd)
KVERSION := $(shell uname -r)
EXPECTED_KDIR := /lib/modules/$(KVERSION)/build
INSTDIR = /lib/modules/$(KVERSION)/kernel/drivers/net
MODULE_DIR:=M=$(PWD)
#
# Check existance of kernel build directory
#
KDIR=$(shell [ -e $(EXPECTED_KDIR) ] && echo $(EXPECTED_KDIR))
ifeq (,$(KDIR))
  $(error Aborting the build: Linux kernel $(EXPECTED_KDIR) source not found)
endif

ifneq ($(KERNELRELEASE), )
# Linux kernel module build system variables
include $(M)/makefile.inc
# 
else
# make targets
include makefile.inc
.PHONY: help clean install uninstall

all: clean
	@echo Building kernel $(KVERSION)
	$(MAKE) -C $(KDIR) $(MODULE_DIR) modules 

clean: 
	$(MAKE) -C $(KDIR) $(MODULE_DIR) clean

help usage:
	@echo "tn40xx driver Makefile. Available targets:" 
	@echo "  all              - build the driver" 
	@echo "  clean            - Clean the driver"
	@echo "  help             - Print this help message"
	@echo "  install          - Install driver to system directory"
	@echo "                     usually, it is /lib/modules/VER/kernel/drivers/net"
	@echo "  default          - all"
	@echo

install: $(DRV_NAME).ko
	install -d $(INSTDIR)
	install -m 644 $(DRV_NAME).ko $(INSTDIR)
	echo 'SUSPEND_MODULES="tn40xx"' > /etc/pm/config.d/$(DRV_NAME) 
	depmod $(KVERSION)


uninstall:
	rm $(INSTDIR)/$(DRV_NAME).ko 
	rm /etc/pm/config.d/$(DRV_NAME)
	depmod $(KVERSION)


endif # else of ifneq ($(KERNELRELEASE), )
