17 lines
455 B
Makefile
17 lines
455 B
Makefile
subdir-m += lib
|
|
subdir-m += zcmd
|
|
|
|
all:
|
|
# Make the exported SPL symbols available to this module. There
|
|
# is probably a better way to do this, but this will have to do
|
|
# for now... an option to modpost perhaps.
|
|
cp @splsymvers@ .
|
|
|
|
# Kick off the kernel build system
|
|
$(MAKE) -C @LINUX@ SUBDIRS=`pwd` @KERNELMAKE_PARAMS@ modules
|
|
|
|
install uninstall clean distclean maintainer-clean distdir:
|
|
$(MAKE) -C @LINUX@ SUBDIRS=`pwd` @KERNELMAKE_PARAMS@ $@
|
|
|
|
check:
|