]> git.proxmox.com Git - mirror_zfs.git/blame - modules/splat/Makefile.in
Make the splat load message caps just for consistency
[mirror_zfs.git] / modules / splat / Makefile.in
CommitLineData
f1ca4da6
BB
1# Makefile.in for splat kernel module
2
3MODULES := splat
b871b8cd 4DISTFILES = Makefile.in *.c *.h
57d86234 5EXTRA_CFLAGS = @KERNELCPPFLAGS@
f1ca4da6 6
715f6251 7# Solaris Porting LAyer Tests
f1ca4da6
BB
8obj-m := splat.o
9
10splat-objs += splat-ctl.o
11splat-objs += splat-kmem.o
12splat-objs += splat-taskq.o
13splat-objs += splat-random.o
14splat-objs += splat-mutex.o
15splat-objs += splat-condvar.o
16splat-objs += splat-thread.o
17splat-objs += splat-rwlock.o
18splat-objs += splat-time.o
4b171585 19splat-objs += splat-vnode.o
9490c148 20splat-objs += splat-kobj.o
9f4c835a 21splat-objs += splat-atomic.o
d702c04f 22splat-objs += splat-list.o
b871b8cd 23splat-objs += splat-generic.o
f1ca4da6
BB
24
25splatmodule := splat.ko
26splatmoduledir := @kmoduledir@/kernel/lib/
27
a0aadf56 28install:
f1ca4da6
BB
29 mkdir -p $(DESTDIR)$(splatmoduledir)
30 $(INSTALL) -m 644 $(splatmodule) $(DESTDIR)$(splatmoduledir)/$(splatmodule)
31 -/sbin/depmod -a
32
33uninstall:
34 rm -f $(DESTDIR)$(splatmoduledir)/$(splatmodule)
35 -/sbin/depmod -a
36
37clean:
38 -rm -f $(splmodule) *.o .*.cmd *.mod.c *.ko *.s */*.o
39
40distclean: clean
41 rm -f Makefile
42 rm -rf .tmp_versions
43
44maintainer-clean: distclean
45
46distdir: $(DISTFILES)
47 cp -p $(DISTFILES) $(distdir)