mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-26 19:19:32 +03:00
a0aadf5666
the directories at the top level but that proved troublesome. The kernel buildsystem and autoconf were conflicting too much. To resolve the issue I moved the kernel bits in to a modules directory which can then only use the kernel build system. We just pass along the likely make targets to the kernel build system. git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@11 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
41 lines
862 B
Makefile
41 lines
862 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
|
|
spl-objs += linux-generic.o
|
|
|
|
splmodule := spl.ko
|
|
splmoduledir := @kmoduledir@/kernel/lib/
|
|
|
|
install:
|
|
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)
|