-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile.am
More file actions
35 lines (26 loc) · 1.51 KB
/
Makefile.am
File metadata and controls
35 lines (26 loc) · 1.51 KB
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
EXTRA_DIST = Makefile.am combined_server_1to1.c combined_server_1toM.c idexample1to1.c idexample1toM.c newexample1to1.c
noinst_PROGRAMS = combined_server_1to1 combined_server_1toM idexample1to1 idexample1toM newexample1to1 terminal tsctp
combined_server_1to1_SOURCES = combined_server_1to1.c
combined_server_1to1_CFLAGS = -I../socketapi
combined_server_1to1_LDADD = ../socketapi/libsctpsocket.la @glib_LIBS@ @thread_LIBS@ -lstdc++
combined_server_1toM_SOURCES = combined_server_1toM.c
combined_server_1toM_CFLAGS = -I../socketapi
combined_server_1toM_LDADD = ../socketapi/libsctpsocket.la @glib_LIBS@ @thread_LIBS@ -lstdc++
idexample1to1_SOURCES = idexample1to1.c
idexample1to1_CFLAGS = -I../socketapi
idexample1to1_LDADD = ../socketapi/libsctpsocket.la @glib_LIBS@ @thread_LIBS@ -lstdc++
idexample1toM_SOURCES = idexample1toM.c
idexample1toM_CFLAGS = -I../socketapi
idexample1toM_LDADD = ../socketapi/libsctpsocket.la @glib_LIBS@ @thread_LIBS@ -lstdc++
newexample1to1_SOURCES = newexample1to1.c
newexample1to1_CFLAGS = -I../socketapi
newexample1to1_LDADD = ../socketapi/libsctpsocket.la @glib_LIBS@ @thread_LIBS@ -lstdc++
terminal_SOURCES = terminal.c
terminal_CFLAGS = -I../socketapi
terminal_LDADD = ../socketapi/libsctpsocket.la @glib_LIBS@ @thread_LIBS@ -lstdc++
tsctp_SOURCES = tsctp.c
tsctp_CFLAGS = -I../socketapi
tsctp_LDADD = ../socketapi/libsctpsocket.la @glib_LIBS@ @thread_LIBS@ -lstdc++
#t5_SOURCES = t5.cc
#t5_CFLAGS = -I../socketapi
#t5_LDADD = ../socketapi/libsctpsocket.la @glib_LIBS@ @thread_LIBS@ -lstdc++