Compile all .c files in a directory using GCC compiler in CMD
I guess gcc itself doesn't have such a parameter.
But you can try the regular wildcard argument of gcc *.c -o Output
where the *
(wildcard) is to read as "any".
I guess gcc itself doesn't have such a parameter.
But you can try the regular wildcard argument of gcc *.c -o Output
where the *
(wildcard) is to read as "any".