aboutsummaryrefslogtreecommitdiff
path: root/xorg-server/os/makefile
blob: b129301e92d5b8bd0949f9d4bfac284cf3fa6e42 (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
53
54
55
56
57
LIBRARY=libos

ifeq ($(DEBUG),1)
DEFINES += XSERVER_DTRACE
endif
DEFINES += NO_LOCAL_CLIENT_CRED
SECURE_RPC=1
XDMCP=1
NEED_STRLCAT=1
NEED_STRNDUP=1

SECURERPC_SRCS = rpcauth.c
XDMCP_SRCS = xdmcp.c
STRLCAT_SRCS = strlcat.c strlcpy.c
XORG_SRCS = log.c
STRNDUP_SRCS = strndup.c

libos_la_SOURCES = 	\
	WaitFor.c	\
	access.c	\
	auth.c		\
	backtrace.c	\
	client.c	\
	connection.c	\
	io.c		\
	mitauth.c	\
	oscolor.c	\
	osdep.h		\
	osinit.c	\
	utils.c		\
	strcasecmp.c	\
	strcasestr.c	\
	xdmauth.c	\
	xsha1.c		\
	xstrans.c	\
	xprintf.c	\
	reallocarray.c  \
	$(XORG_SRCS)

if SECURE_RPC
libos_la_SOURCES += $(SECURERPC_SRCS)
endif
if XDMCP
libos_la_SOURCES += $(XDMCP_SRCS)
endif

if NEED_STRLCAT
libos_la_SOURCES += $(STRLCAT_SRCS)
endif

if NEED_STRNDUP
libos_la_SOURCES += $(STRNDUP_SRCS)
endif

CSRCS = $(filter %.c,$(libos_la_SOURCES))