blob: 361499de70554c19e944e04761249d5afb5ccd58 (
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
|
installconf:
sbin_PROGRAMS = ax25_call netrom_call rose_call tcp_call
dist_man_MANS = ax25_call.8 netrom_call.8 rose_call.8 tcp_call.8
dist_doc_DATA= README.user_call
LDADD = $(AX25_LIB) $(Z_LIB)
ax25_call_SOURCES = ax25_call.c \
user_io.c \
user_io.h
netrom_call_SOURCES = netrom_call.c \
user_io.c \
user_io.h
rose_call_SOURCES = rose_call.c \
user_io.c \
user_io.h
tcp_call_SOURCES = tcp_call.c \
user_io.c \
user_io.h
AM_CPPFLAGS = -D_GNU_SOURCE
|