mirror of
https://github.com/SCST-project/scst.git
synced 2026-08-18 13:16:34 +00:00
Signed-off-by: Dotan Barak <dotanba@gmail.com> git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@427 d57e44dd-8a1f-0410-8b47-8ef2f437770f
19 lines
231 B
Makefile
19 lines
231 B
Makefile
ifndef KDIR
|
|
KDIR := /lib/modules/$(shell uname -r)/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
|
|
|