aboutsummaryrefslogtreecommitdiffstats
path: root/module/Makefile.in
blob: 4368f714279b5c10b087f480f68e7ac8e96dc2c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
subdir-m += spl
subdir-m += splat

INSTALL=/usr/bin/install

modules clean:
	$(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` @KERNELMAKE_PARAMS@ $@

modules_install:
	$(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` \
		INSTALL_MOD_PATH=$(DESTDIR) \
		INSTALL_MOD_DIR=addon/spl $@
	find ${DESTDIR}/lib/modules/ -name 'modules.*' | xargs ${RM}

distdir:
	list='$(subdir-m)'; for subdir in $$list; do \
		(find $$subdir -name '*.c' -o -name '*.h' | \
		 xargs /bin/cp -t $$distdir/$$subdir); \
	done

distclean maintainer-clean: clean
install: modules_install
all: modules
check: