Codebase list stealth / ed38f316-83eb-414f-80b4-60384b1a49ee/main INSTALL.im
ed38f316-83eb-414f-80b4-60384b1a49ee/main

Tree @ed38f316-83eb-414f-80b4-60384b1a49ee/main (Download .tar.gz)

INSTALL.im @ed38f316-83eb-414f-80b4-60384b1a49ee/mainraw · history · blame

    // the name of the project:
#define PROJECT             "stealth"

    // compiler to use:
#define CXX                 "g++"

    // compiler options to use:
#define CXXFLAGS    "--std=c++20 -Wall -O2 -pthread -fdiagnostics-color=never"

    // options passed to the linker:
#define LDFLAGS             ""

#define CPOPTS


// COMPONENTS TO INSTALL
// =====================

    // For an operational non-Debian installation, you probably must be
    // `root'.

    // If necessary, adapt DOC, HDR, LIB and MAN (below) to your situation.
    // The provided locations are used by Debian Linux.

    // With 'build install' you can dynamically specify a location to prepend
    // to the locations configured here, and select which components you want 
    // to install

// ONLY USE ABSOLUTE DIRECTORY NAMES:


    // the directory where the additional documentation is stored 
#define ADD   "/usr/share/doc/"${PROJECT}"-doc"

    // the final program
#define BINARY     "/usr/bin/"${PROJECT}

    // the directory where the standard documentation is stored 
#define DOC     "/usr/share/doc/"${PROJECT}

    // the directory whre the manual page is stored
#define MAN     "/usr/share/man/man1"

    // the directory whre the user guide is stored
#define UGUIDE   "/usr/share/doc/"${PROJECT}"-doc/manual"