15 Nov
2013
15 Nov
'13
5:33 p.m.
clean: rm -f $(MOFILES) *~ *.orig
- rm -f `find . -name '*.mo'`
- rmdir `find * -depth -type d`
- find . -name '*.mo' -exec echo "{}" ;
- find . -depth -type d -exec echo "{}" ;
How does this prevent anything from building? It's in the clean target...
Also, AFAICT, you're breaking the commands here, which are supposed to delete all .mo files and directories by replacing them with just find commands.
What am I missing?
--Dan