blob: e7a2869700a0a8f0d52abe3922fecdca7cc01728 (
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
|
ifeq ($(DEBUG),1)
DEFINES += XSERVER_DTRACE
endif
SECURERPC_SRCS = rpcauth.c
XDMCP_SRCS = xdmcp.c
STRLCAT_SRCS = strlcat.c strlcpy.c
XORG_SRCS = log.c
CSRCS = \
WaitFor.c \
access.c \
auth.c \
backtrace.c \
connection.c \
io.c \
mitauth.c \
oscolor.c \
osinit.c \
utils.c \
strcasecmp.c \
strcasestr.c \
xdmauth.c \
xsha1.c \
xstrans.c \
xprintf.c \
$(XORG_SRCS)
CSRCS += $(SECURERPC_SRCS)
CSRCS += $(XDMCP_SRCS)
CSRCS += $(STRLCAT_SRCS)
LIBRARY=libos
|