#**********@@@SOFT@@@WARE@@@COPY@@@RIGHT@@@**********************************
# Copyright (C) 2001-2010 Dialogic Corporation. All Rights Reserved.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1.    Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2.    Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
#
# 3.    Neither the name Dialogic nor the names of its
# contributors may be used to endorse or promote products derived from this
# software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#**********************************@@@SOFT@@@WARE@@@COPY@@@RIGHT@@@**********/
#**************************************************************************
#   FILE:        Makefile
#
#   PURPOSE:     Makefile for linux driver kernel interface module.
#
#   HISTORY:	 2.4 and 2.6 kernel compliant
#
#**************************************************************************/
CC = gcc -c
KERNELRELEASE = $(shell uname -r)
KERNELBUILDDIR = /lib/modules/$(KERNELRELEASE)/build
ASM_INC = $(KERNELBUILDDIR)/include/asm/mach-default
PWD = $(shell pwd)

SOURCE = ctimod.c

# Option to build for 2.4 or 2.6 kernels
KERNELMAJOR = $(shell uname -r | cut -b3)
ifeq ($(KERNELMAJOR),6)
MODULE = /lib/modules/$(KERNELRELEASE)/misc/ctimod.ko
EXTRA_CFLAGS += -D__KERNEL__ -DMODULE -I$(KERNELBUILDDIR)/include -I$(ASM_INC)
obj-m := ctimod.o

default:
	@if [ -f /lib/modules/$(KERNELRELEASE)/misc ]; then \
	echo ""; \
	else \
	mkdir -p /lib/modules/$(KERNELRELEASE)/misc; \
	fi; \
	$(MAKE) -C $(KERNELBUILDDIR) SUBDIRS=$(PWD) V=1 modules; \
	cp -f ctimod.ko /lib/modules/$(KERNELRELEASE)/misc/; \
	rm -f ctimod.ko ctimod.mod.c ctimod.mod.o ctimod.o ; \
	rm -rf .tmp_versions .ctimod*

else
MODULE = /lib/modules/$(KERNELRELEASE)/misc/ctimod.o
CFLAGS = -D__KERNEL__ -DMODULE  -I/$(KERNELBUILDDIR)/include -I$(ASM_INC)
OBJECT = $(SOURCE:.c=.o)
obj-m := $(MODULE)

all: $(OBJECT)
.c.o:
	@if [ -f /lib/modules/$(KERNELRELEASE)/misc ]; then \
        $(CC) $(CFLAGS) -o /lib/modules/$(KERNELRELEASE)/misc/$@ .c; \
        else \
        mkdir -p /lib/modules/$(KERNELRELEASE)/misc; \
        $(CC) $(CFLAGS) -o /lib/modules/$(KERNELRELEASE)/misc/$@ $*.c; \
        fi
endif

clean:
	@rm -f $(MODULE)

uninstall:
	@rm -f $(MODULE)
