mirror of
https://github.com/UzixLS/picocom.git
synced 2025-07-19 07:21:18 +03:00

and path completion when entering filenames for receive- and send- file operations. Support can be compiled-out if you wish. See Makefile. - When entering a filename for receive- or send- file operations, pressing C-c cancels the operation. This works regardless of whether linenoise support (see above) has been compiled in or not - Use debian's xmltoman to convert manual page form xml to man.
8 lines
184 B
Makefile
8 lines
184 B
Makefile
linenoise_example: linenoise.h linenoise.c
|
|
|
|
linenoise_example: linenoise.c example.c
|
|
$(CC) -Wall -W -Os -g -o linenoise_example linenoise.c example.c
|
|
|
|
clean:
|
|
rm -f linenoise_example
|