view Makefile @ 5:fa5d2b9d8831

Add make dist to create tarball without .svn contest
author AngelCarpintero
date Sun, 18 May 2008 19:24:57 +0000
parents 390a65d28b53
children d3fdefea8bce
line wrap: on
line source

VERSION=trunk

ifneq ($(KERNELRELEASE),)

obj-m	:= vloopback.o

else

KVER  := $(shell uname -r)
KLINK := $(shell test -e /lib/modules/${KVER}/source/ && echo source || echo "build")
KSRC  := /lib/modules/$(KVER)/$(KLINK)
PWD   := $(shell pwd)
DEST  := /lib/modules/$(KVER)/kernel/drivers/misc

# Fix some problem with suse < 9.2 and suse >= 9.2
is_suse := $(shell test -e /etc/SuSE-release && echo 1 || echo 0)
ifeq ($(is_suse),1)
  suse_version := $(shell grep VERSION /etc/SuSE-release | cut -f 3 -d " "| tr -d .)
  is_suse_92_or_greater := $(shell test $(suse_version) -ge 92 && echo 1)
  ifeq ($(is_suse_92_or_greater),1)
	KSRC := /lib/modules/$(KVER)/build
  endif
endif
             


all default:
	$(MAKE) -C $(KSRC) SUBDIRS=$(PWD) modules

install:
	install -d $(DEST)
	install -m 644 -c vloopback.ko $(DEST)
	-/sbin/depmod -a

	
uninstall:
	rm -f $(DEST)/vloopback.ko
	-/sbin/depmod -a
clean:
	rm -f .*.cmd *.o *.mod.c *.ko .v* *~ core Modules.symvers
	rm -rf .tmp_versions/
	rm -f example/dummy example/feed example/resize example/invert

dist: clean
	cd .. ; tar cfvz vloopback-$(VERSION).tar.gz  --exclude='.svn' $(VERSION)/ 
endif