# Installing ctlseqs ## Copy Code to Your Project The code of ctlseqs is simple, and can be used out-of-the-box. Just copy [ctlseqs.h](include/ctlseqs.h) and [ctlseqs.c](src/ctlseqs.c) to your project and build it alongside with other code. Requires an ISO C99 and POSIX.1-2001 compliant C implementation. ## Build and Install From Source Alternatively, ctlseqs can be built into a shared/static library with GNU Autotools (Autoconf, Automake, Libtool and Autoconf Archive). ```shell autoreconf --install ./configure make ``` Optionally, you can run tests (requires DejaGnu) and install the library. ```shell make check make install ``` Unix man pages are not automatically installed with `make install`, and should be installed manually with `make install-man`.