What file extension would compiled c code have? It's not showing any sort of file extension...
I'm currently using to prune my folders of dSYM files.
CFLAGS=-Wall -g
clean:
rm -r *.dSYM
How can I 'target' my compiled C programs, and just wipe the folder of all compiled code?
Thanks