// compile .c files specified as command line arguments // // if my_program.c and other_program.c is speicified as an argument then the follow two command will be executed: // /usr/local/bin/dcc my_program.c -o my_program // /usr/local/bin/dcc other_program.c -o other_program #include #include #include #include #include #include #define DCC_PATH "/usr/local/bin/dcc" extern char **environ; int main(int argc, char **argv) { return EXIT_SUCCESS; }