blob: b75fc0a13af50ecaba0504a10d1785787f604f32 (
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
|
AM_CFLAGS = -DICE_t -DTRANS_SERVER -DTRANS_CLIENT -DUNIXCONN -DANSICPP
INCLUDES = $(all_includes)
noinst_LTLIBRARIES = libkICE.la
noinst_HEADERS = ICE.h \
ICEconn.h \
ICElib.h \
ICElibint.h \
ICEmsg.h \
ICEproto.h \
ICEutil.h \
Xtrans.h \
Xtransint.h \
Xfuncproto.h \
globals.h
libkICE_la_SOURCES = accept.c \
authutil.c \
connect.c \
error.c \
getauth.c \
iceauth.c \
listen.c \
listenwk.c \
locking.c \
misc.c \
ping.c \
process.c \
protosetup.c \
register.c \
replywait.c \
setauth.c \
shutdown.c \
watch.c \
transport.c \
globals.c
|