Skip to content

balabit/libtermcapparser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5815025 · Jan 31, 2024
Oct 17, 2013
Jan 31, 2024
Oct 5, 2016
Apr 6, 2020
Apr 6, 2020
Oct 7, 2016
Oct 7, 2016
Oct 7, 2016
Oct 5, 2016
Oct 8, 2018
Oct 8, 2018
Apr 6, 2020
Oct 7, 2016
Dec 6, 2023
Oct 7, 2016
Oct 10, 2016
Oct 7, 2016
Oct 17, 2013
Oct 17, 2013
Oct 17, 2013
Oct 17, 2013
Dec 6, 2023
Oct 5, 2016
Oct 5, 2016
Oct 7, 2016
Jan 4, 2017
Jan 4, 2017
Oct 17, 2013
Oct 7, 2016
Oct 17, 2013
Apr 6, 2020
Oct 7, 2016
Oct 17, 2013
Apr 6, 2020
Apr 6, 2020
Apr 6, 2020
Mar 29, 2019
Oct 17, 2013
Oct 17, 2013
Oct 17, 2013
Oct 17, 2013
Oct 17, 2013

Repository files navigation

libtermcapparser

This repository contains a terminal emulator library originating from putty SSH client.

Build

# To build and install the library for linux:
make linux PREFIX=<path>

# To build and install the library for win32:
export XPATH=<the path containing the cross toolchain>
export XTYPE=<the type of the crosscompiler>  # eg. in case of "i686-w64-mingw32.shared",
                                              # the c compiler i686-w64-mingw32.shared-gcc will be used
make win32 PREFIX=<path>

Running the tests

# Tests check the installed version, so you'll need to specify the PREFIX:
make linux-check PREFIX=/tmp
make win32-check PREFIX=${XPATH}

Other make targets

# clean, distclean, install, install-strip, uninstall... subtargets:
make <os>-<subtarget>
# For example for the "clean" subtarget for "linux" build you would:
make linux-clean
# Note: For all these commands to work, you need to run the "dep" subtarget first!
# Note: Clean before changing os!