{{>toc}} h1. Dependencies h2. Base environment This project is managed with GNU Autotools (the magic behind "@./configure && make all install@"). It needs a unix-like shell command line which is native with all linux distributions, with MacOS, but not with Microsoft Windows. For windows developpers, install either "MinGW":https://www.mingw-w64.org/ with "MSYS2":https://www.msys2.org/ or "Cygwin":https://cygwin.com/. I recommend the first one because Cygwin needs runtime dependencies which needs to be packaged with the builds. Whatever the choice, I will not document here how to install the installations processes, please read the related install docs. I assume that MacOS developers already have "HomeBrew":https://brew.sh installed. h2. Development repository The project uses the Mercurial:https://www.mercurial-scm.org Version Control System and publish the "reporitory on the internet":https://hg.cerbelle.net/hg/rsstats. The first step is to download and install Mercurial. h3. Debian based distributions (Ubuntu, Mint, ...)

apt-get install -y mercurial
h3. RedHat based distributions (Fedora, Rocky, Centos, RHEL, ...)

yum install mercurial
h3. MacOS

brew install mercurial
h3. Windows A whole "Cygwin":https://cygwin.com/ or "MinGW":https://www.mingw-w64.org/ development environment is needed, thus I recommend to install a commandline mercurial client. And, given that Windows users prefer mouse over keyboard, "TortoiseHg":http://tortoisehg.org can be also installed to integrate Mercurial features in Windows file explorer. h2. Compiler h3. Compilation toolchain h4. Debian

apt-get install -y build-essential
h4. RedHat h4. MacOS

xcode-select --install
h4. Windows MinGW/MSYS2 h3. Autotools Autotools generates files such as _configure_ which are distributed with the sources to compile them. This project does not store generated files in the repository. Thus, starting from the repository means to have autotools installed, to generate all the files needed to compile the project.

apt-get install -y autoconf autogen libtool pkg-config

brew install autoconf autogen libtool pkg-config
h3. Build libraries h4. Debian

apt-get install -y libssl-dev
h4. RedHat h4. MacOS

brew install openssl@3
h4. Windows h2. Coding helpers (optional) h3. CppCheck (code static analysis) h3. AStyle (code formatting) h1. Preparation h2. Get sources h2. Generate autotools files h2. Library mandatory dependencies For the developers, libopt was already installed with autogen and is available system-wide. For the maintainers, to avoid the need for autogen, a copy of libopts in automatically distributed in the source package. The mandatory _libssl-dev_ and _libssl_ libraries should already be installed previously to allow @configure@ to be executed. h2. Library optional dependencies Optionaly, the _check_ library can be installed to allow unittesting. h4. Debian

apt-get install -y check
h4. RedHat h4. MacOS

brew install check
h4. Windows h1. Code and test From here, all the development specific dependencies are installed, but the project also have build dependencies (libraries). h2. Configure

./configure
h2. Reformat the code

make astyle
h2. Analyze the code

make cppcheck
xdg-open cppcheck/index.html

make cppcheck-clean
h2. API and Source documentation Included by default in @make all@ target

make html
make pdf

make -C doc clean
h2. Compilation and tests (unit and functional)

make all check

make clean
h2. Installation and check

make DESTDIR=`pwd`/_inst install installcheck

make DESTDIR=`pwd`/_inst uninstall
h1. Package h2. Source distribution and check

make dist distcheck

make distclean
h2. Linux AppImage

make linux-appimage

make linux-clean
h2. Linux Debian/Ubuntu

make debian-deb

make debian-clean
h2. Linux RedHat/Fedora/CentOS/Rocky apt-get install rpm mkdir -p rpmbuild/{BUILD,RPMS,SOURCES,SPECS,SRPMS}

make redhat-rpm

make redhat-clean
h2. Windows ZIP/Installer

make windows-zip
make windows-exe

make windows-clean
h2. MacOS ZIP/DMG/PKG

make macos-zip
make macos-dmg
make macos-pkg

make macos-clean
h1. Wrapup