Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.am « zbxrtc « libs « src - github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a739d3868f6176187bb6615798b428524f050643 (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
## Process this file with automake to produce Makefile.in

noinst_LIBRARIES = \
	libzbxrtc.a \
	libzbxrtc_service.a \
	libzbxrtc_server.a \
	libzbxrtc_proxy.a

# common rtc functionality

libzbxrtc_a_SOURCES = \
	rtc.c \
	rtc.h

# common rtc service functionality

libzbxrtc_service_a_SOURCES = \
	rtc_service.c \
	rtc_client.c \
	rtc.h 

# server specific functionality
 
libzbxrtc_server_a_SOURCES = \
	rtc_server.c \
	rtc.h

# proxy specific functionality

libzbxrtc_proxy_a_SOURCES = \
	rtc_proxy.c \
	rtc.h