head	1.3;
access;
symbols
	ldd3:1.1.1.1 start:1.1.1;
locks; strict;
comment	@# @;


1.3
date	2008.10.01.04.59.08;	author kaurikim;	state Exp;
branches;
next	1.2;

1.2
date	2006.07.08.18.30.26;	author kaurikim;	state Exp;
branches;
next	1.1;

1.1
date	2006.07.06.16.33.44;	author kaurikim;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	2006.07.06.16.33.44;	author kaurikim;	state Exp;
branches;
next	;


desc
@@


1.3
log
@*** empty log message ***
@
text
@# Comment/uncomment the following line to disable/enable debugging
#DEBUG = y


# Add your debugging flag (or not) to CFLAGS
ifeq ($(DEBUG),y)
  DEBFLAGS = -O -g -DSBULL_DEBUG # "-O" is needed to expand inlines
else
  DEBFLAGS = -O2
endif

CFLAGS += $(DEBFLAGS)
CFLAGS += -I..

ifneq ($(KERNELRELEASE),)
# call from kernel build system

obj-m	:= snull.o

else

KERNELDIR ?= /lib/modules/$(shell uname -r)/build
PWD       := $(shell pwd)

default:
	$(MAKE) -C $(KERNELDIR) M=$(PWD) modules

endif



clean:
	rm -rf *.o *~ core .depend .*.cmd *.ko *.mod.c .tmp_versions

depend .depend dep:
	$(CC) $(CFLAGS) -M *.c > .depend


ifeq (.depend,$(wildcard .depend))
include .depend
endif
@


1.2
log
@test
@
text
@d2 1
a2 1
DEBUG = y
@


1.1
log
@Initial revision
@
text
@d2 1
a2 1
#DEBUG = y
@


1.1.1.1
log
@linux device driver 3th example source
@
text
@@
