Whamcloud - gitweb
LU-1339 libcfs: add crc32 pclmulqdq implementation
[fs/lustre-release.git] / libcfs / libcfs / autoMakefile.am
1 #
2 # GPL HEADER START
3 #
4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License version 2 only,
8 # as published by the Free Software Foundation.
9 #
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # General Public License version 2 for more details (a copy is included
14 # in the LICENSE file that accompanied this code).
15 #
16 # You should have received a copy of the GNU General Public License
17 # version 2 along with this program; If not, see
18 # http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19 #
20 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21 # CA 95054 USA or visit www.sun.com if you need additional information or
22 # have any questions.
23 #
24 # GPL HEADER END
25 #
26
27 #
28 # Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
29 # Use is subject to license terms.
30 #
31
32 #
33 # This file is part of Lustre, http://www.lustre.org/
34 # Lustre is a trademark of Sun Microsystems, Inc.
35 #
36
37 SUBDIRS := linux util posix
38 if DARWIN
39 SUBDIRS += darwin
40 endif
41 DIST_SUBDIRS := linux util posix darwin
42
43 if LIBLUSTRE
44 noinst_LIBRARIES= libcfs.a
45 libcfs_a_SOURCES= posix/posix-debug.c user-prim.c user-lock.c user-tcpip.c \
46                   prng.c user-bitops.c user-mem.c hash.c kernel_user_comm.c \
47                   workitem.c fail.c libcfs_cpu.c libcfs_mem.c libcfs_lock.c \
48                   posix/rbtree.c user-crypto.c posix/posix-crc32.c \
49                   posix/posix-adler.c
50
51 if ARCH_x86
52 libcfs_a_SOURCES += user-crc32pclmul.c crc32-pclmul_asm.S
53 endif
54
55 libcfs_a_CPPFLAGS = $(LLCPPFLAGS)
56 libcfs_a_CFLAGS = $(LLCFLAGS)
57 endif
58
59 lib_LIBRARIES = libcfsutil.a
60 libcfsutil_a_SOURCES = nidstrings.c libcfs_string.c util/parser.c \
61                        util/l_ioctl.c util/util.c
62 libcfsutil_a_CPPFLAGS = $(LLCPPFLAGS) 
63 libcfsutil_a_CFLAGS = $(LLCFLAGS) -DLUSTRE_UTILS=1
64
65 if MODULES
66
67 if LINUX
68 modulenet_DATA := libcfs$(KMODEXT)
69 endif
70
71 if DARWIN
72 macos_PROGRAMS := libcfs
73
74 nodist_libcfs_SOURCES := darwin/darwin-sync.c darwin/darwin-mem.c       \
75         darwin/darwin-prim.c darwin/darwin-fs.c darwin/darwin-curproc.c \
76         darwin/darwin-tcpip.c darwin/darwin-utils.c                     \
77         darwin/darwin-debug.c darwin/darwin-proc.c                      \
78         darwin/darwin-tracefile.c darwin/darwin-module.c                \
79         posix/posix-debug.c module.c tracefile.c nidstrings.c watchdog.c \
80         kernel_user_comm.c hash.c posix/rbtree.c
81
82 libcfs_CFLAGS := $(EXTRA_KCFLAGS)
83 libcfs_LDFLAGS := $(EXTRA_KLDFLAGS)
84 libcfs_LDADD := $(EXTRA_KLIBS)
85
86 plist_DATA := Info.plist
87
88 install_data_hook := fix-kext-ownership
89
90 endif
91
92 endif
93
94 install-data-hook: $(install_data_hook)
95
96 MOSTLYCLEANFILES := @MOSTLYCLEANFILES@ linux-*.c linux/*.o darwin/*.o libcfs
97 EXTRA_DIST := $(libcfs-all-objs:%.o=%.c) Info.plist tracefile.h prng.c \
98               user-lock.c user-tcpip.c user-bitops.c user-prim.c workitem.c \
99               user-mem.c kernel_user_comm.c fail.c libcfs_cpu.c \
100               libcfs_mem.c libcfs_lock.c linux/linux-tracefile.h