aboutsummaryrefslogtreecommitdiffstats
path: root/lib/libspl/Makefile.am
blob: b3d9ee79c319ba4c0b7cd8a0fa24e7834bf36174 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
include $(top_srcdir)/config/Rules.am

if TARGET_CPU_I386
TARGET_CPU_ATOMIC_SOURCE = asm-i386/atomic.S
else
if TARGET_CPU_X86_64
TARGET_CPU_ATOMIC_SOURCE = asm-x86_64/atomic.S
else
TARGET_CPU_ATOMIC_SOURCE = asm-generic/atomic.c
endif
endif

SUBDIRS = include

AM_CFLAGS += $(LIBTIRPC_CFLAGS)

AM_CCASFLAGS = \
	$(CFLAGS)

noinst_LTLIBRARIES = libspl.la

USER_C = \
	list.c \
	mkdirp.c \
	page.c \
	strlcat.c \
	strlcpy.c \
	timestamp.c \
	zone.c \
	include/sys/list.h \
	include/sys/list_impl.h

if BUILD_LINUX
USER_C += \
	os/linux/getexecname.c \
	os/linux/gethostid.c \
	os/linux/getmntany.c
endif

if BUILD_FREEBSD
USER_C += \
	os/freebsd/getexecname.c \
	os/freebsd/gethostid.c \
	os/freebsd/getmntany.c \
	os/freebsd/mnttab.c
endif

libspl_la_SOURCES = \
	$(USER_C) \
	$(TARGET_CPU_ATOMIC_SOURCE)

libspl_la_LIBADD = -lrt $(LIBTIRPC_LIBS)