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