Files
scst/qla_isp/Makefile
Stanislaw Gruszka 3bdd1d549f Add uninstall makefile target.
git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@430 d57e44dd-8a1f-0410-8b47-8ef2f437770f
2008-07-06 10:45:25 +00:00

22 lines
275 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
uninstall:
$(MAKE) -C linux-2.6 uninstall