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