File: Makefile.am

package info (click to toggle)
liblo 0.34-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,088 kB
  • sloc: ansic: 8,500; sh: 4,616; cpp: 1,098; makefile: 157
file content (31 lines) | stat: -rw-r--r-- 863 bytes parent folder | download | duplicates (6)
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
MAINTAINERCLEANFILES = Makefile.in

# Example servers depends on threads, so skip it if threads are
# disabled.

noinst_PROGRAMS = example_client
if ENABLE_THREADS
noinst_PROGRAMS += example_server nonblocking_server_example	\
                   example_tcp_echo_server
if HAVE_LAMBDA
noinst_PROGRAMS += cpp_example
endif
endif

AM_CFLAGS = -Wall -I@top_srcdir@
AM_CXXFLAGS = -Wall -I@top_srcdir@

example_server_SOURCES = example_server.c
example_server_LDADD = ../src/liblo.la

example_tcp_echo_server_SOURCES = example_tcp_echo_server.c
example_tcp_echo_server_LDADD = ../src/liblo.la

example_client_SOURCES = example_client.c
example_client_LDADD = ../src/liblo.la

nonblocking_server_example_SOURCES = nonblocking_server_example.c
nonblocking_server_example_LDADD = ../src/liblo.la

cpp_example_SOURCES = cpp_example.cpp
cpp_example_LDADD = ../src/liblo.la