#ifdef IH
    void rmPrecomp(string requires)
    {
        printf << "removing .gch files\n";
        echo(OFF);
        exec("rm -rf " + g_gchDir);
    
        for (int idx = listlen(g_classes); idx--; )
        {
            string class = g_classes[idx];
            exec("rm -f " + class + '/' + class + IH ".gch");
        }
        #ifdef MAIN
            exec("rm -f " + g_mainBase + IH ".gch");
        #endif
    }
#else
    void rmPrecomp(string requires)
    {
        requireIH(requires);
    }
#endif

void cleanPrecomp()
{
    #ifdef PRECOMP
        rmPrecomp("PRECOMP");
    #endif
    #ifdef SPCH
        rmPrecomp("SPCH");
    #endif
    exit(0);
}

