#!/usr/bin/icmake -t.

#define LOGENV "GPGREMAILER"

#include "icmconf"

list    g_log;
string  
    g_logPath = getenv(LOGENV)[1],
    g_cwd = chdir("");  // initial working directory, ends in /

int g_echo = ON;        // MODIFIED, existing variable


#include "icmake/cuteoln"
#include "icmake/backtick"
#include "icmake/setopt"
#include "icmake/run"
#include "icmake/md"
#include "icmake/findall"
#include "icmake/loginstall"
#include "icmake/logzip"
#include "icmake/logfile"
#include "icmake/uninstall"
#include "icmake/pathfile"

#include "icmake/special"
#include "icmake/clean"
#include "icmake/manpage"
#include "icmake/install"
#include "icmake/gitlab"

void main(int argc, list argv)
{
    string option;
    string compileType;
    int idx;

    for (idx = listlen(argv); idx--; )
    {
        if (argv[idx] == "-q")
        {
            g_echo = OFF;
            argv -= (list)"-q";
        }
    }

    echo(g_echo);

    option = argv[1];

    if (option == "clean")
        clean(0);

    if (option == "distclean")
        clean(1);

    if (option == "install")
        install(argv[2], argv[3]);

    if (option != "")
        special();

    if (option == "gitlab")
        gitlab();

    if (option == "uninstall")
        uninstall(argv[2]);

    if (option == "man")
        manpage();

    if (option == "library")
    {
        system("icmbuild library");
        exit(0);
    }

    if (argv[2] == "strip")
        compileType = "strip";
    else
        compileType = "program";

    if (option == "program")
    {
        system("icmbuild " + compileType);
        exit(0);
    }

    if (option == "oxref")
    { 
        system("icmbuild " + compileType);
        run("oxref -r replacements -t main -fxs tmp/lib" 
                    LIBRARY ".a tmp/main.o > " PROGRAM ".xref");
        exit(0);
    }

    printf("Usage: build [-q -P] what\n"
        "Where\n"
        "   [-q]:   run quietly, do not show executed commands\n"
        "`what' is one of:\n"
        "   clean                - clean up remnants of previous "
                                                            "compilations\n"
        "   distclean            - clean + fully remove tmp/\n"
        "   library              - build " PROGRAM "'s library\n"
        "   man                  - build the man-page (requires Yodl)\n"
        "   program [strip]      - build " PROGRAM " (optionally strip the\n"
        "                          executable)\n"
        "   oxref [strip]        - same a `program', also builds xref file\n"
        "   install selection [base] - to install the software in the \n"
        "                         locations defined in the INSTALL.im file,\n"
        "                         optionally below base\n"
        "                         selection can be\n"
        "                               x, to install all components,\n"
        "                         or a combination of:\n"
        "                               b (binary program),\n"
        "                               d (documentation),\n"
        "                               m (man-pages)\n"
        "   uninstall logfile   - remove files and empty directories listed\n"
        "                         in the file 'logfile'\n"
        "                          using oxref\n"
        "   gitlab               - prepare gitlab's web-pages update\n"
        "                          (internal use only)\n"
        "\n"
        "If no precompiled headers are required, then comment out the "
                                                                "PRECOMP\n"
        "line in icmconf\n"
        "\n"
    );
    exit(0);
}



