mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-01-26 18:04:22 +03:00
d01858a1ca
git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@8 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
45 lines
930 B
Makefile
45 lines
930 B
Makefile
# Makefile.in for spl kernel module
|
|
|
|
MODULES := spl
|
|
DISTFILES = Makefile.in \
|
|
linux-kmem.c linux-rwlock.c linux-taskq.c \
|
|
linux-thread.c linux-generic.c
|
|
CPPFLAGS += @KERNELCPPFLAGS@
|
|
|
|
# Solaris porting layer module
|
|
obj-m := spl.o
|
|
|
|
spl-objs += linux-kmem.o
|
|
spl-objs += linux-thread.o
|
|
spl-objs += linux-taskq.o
|
|
spl-objs += linux-rwlock.o
|
|
|
|
splmodule := spl.ko
|
|
splmoduledir := @kmoduledir@/kernel/lib/
|
|
|
|
all: all-spec
|
|
|
|
install: all
|
|
mkdir -p $(DESTDIR)$(splmoduledir)
|
|
$(INSTALL) -m 644 $(splmodule) $(DESTDIR)$(splmoduledir)/$(splmodule)
|
|
-/sbin/depmod -a
|
|
|
|
uninstall:
|
|
rm -f $(DESTDIR)$(splmoduledir)/$(splmodule)
|
|
-/sbin/depmod -a
|
|
|
|
clean:
|
|
-rm -f $(splmodule) *.o .*.cmd *.mod.c *.ko *.s */*.o
|
|
|
|
distclean: clean
|
|
rm -f Makefile
|
|
rm -rf .tmp_versions
|
|
|
|
maintainer-clean: distclean
|
|
|
|
distdir: $(DISTFILES)
|
|
cp -p $(DISTFILES) $(distdir)
|
|
|
|
all-spec:
|
|
$(MAKE) -C @kernelsrc@ SUBDIRS=`pwd` @KERNELMAKE_PARAMS@ modules
|