/usr/share/doc/libserial-doc/examples/Makefile.am is in libserial-doc 0.6.0~rc1-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | AM_CXXFLAGS = -Weffc++
noinst_PROGRAMS = readport writeport
# noinst_PROGRAMS = readport writeport xmodem_rx xmodem_tx process_rope_command test_echo
readport_SOURCES = read_port.cpp
writeport_SOURCES = write_port.cpp
# xmodem_rx_SOURCES = xmodem_rx.cpp xmodem.cpp xmodem.h crc16.cpp crc16.h byte_xfer.cpp byte_xfer.h
# xmodem_tx_SOURCES = xmodem_tx.cpp xmodem.cpp xmodem.h crc16.cpp crc16.h byte_xfer.cpp byte_xfer.h
# test_echo_SOURCES = test_echo.cpp
# process_rope_command_SOURCES = process_rope_command.cpp
INCLUDES = -I@top_srcdir@/src
readport_LDADD = ../src/libserial.la
writeport_LDADD = ../src/libserial.la
# xmodem_rx_LDADD = ../src/libserial.la
# xmodem_tx_LDADD = ../src/libserial.la
# test_echo_LDADD = ../src/libserial.la
# process_rope_command_LDADD = ../src/libserial.la
|