# libtermcapparser **Repository Path**: mirrors_balabit/libtermcapparser ## Basic Information - **Project Name**: libtermcapparser - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-08-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 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= # To build and install the library for win32: export XPATH= export XTYPE= # eg. in case of "i686-w64-mingw32.shared", # the c compiler i686-w64-mingw32.shared-gcc will be used make win32 PREFIX= ``` 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 - # 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! ```