mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-14 09:11:27 +00:00
git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@451 d57e44dd-8a1f-0410-8b47-8ef2f437770f
26 lines
309 B
Makefile
26 lines
309 B
Makefile
ifndef KVER
|
|
KVER = $(shell uname -r)
|
|
endif
|
|
|
|
ifndef KDIR
|
|
KDIR := /lib/modules/$(KVER)/build
|
|
endif
|
|
|
|
export KDIR
|
|
|
|
all:
|
|
$(MAKE) -C linux-2.6 tgt
|
|
|
|
clean:
|
|
$(MAKE) -C linux-2.6 clean
|
|
|
|
extraclean:
|
|
$(MAKE) -C linux-2.6 extraclean
|
|
|
|
install:
|
|
$(MAKE) -C linux-2.6 install
|
|
|
|
uninstall:
|
|
$(MAKE) -C linux-2.6 uninstall
|
|
|