head	1.3;
access;
symbols
	tst_001:1.2
	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.10.25.06.13.29;	author kaurikim;	state Exp;
branches;
next	1.1;

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

1.1.1.1
date	2006.07.06.16.33.42;	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 -DSCULL_DEBUG # "-O" is needed to expand inlines
else
  DEBFLAGS = -O2
endif

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

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

scull-objs := main.o pipe.o access.o

obj-m	:= scull.o

else

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

modules:
	$(MAKE) -C $(KERNELDIR) M=$(PWD) LDDINC=$(PWD)/../include 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
@..
@
text
@d18 1
a18 1
kauri-objs := main.o
d20 1
a20 1
obj-m	:= kauri.o
@


1.1
log
@Initial revision
@
text
@d18 1
a18 1
scull-objs := main.o pipe.o access.o
d20 1
a20 1
obj-m	:= scull.o
@


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