
void program(string strip)
{
    string lopt;

    #ifdef PROFILE
        lopt = PROFILE;
    #else
        lopt = strip;
    #endif

    library(0);

    exec(COMPILER, "-o", g_binary,
            "-lbisonc++", libs, "-L.", libpath , lopt);

    exit(0);
}
