[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: make question



> I've found this in a makefile. What does it mean?
> 
> clean:
> 	rm -rf -f *~ \#*\# ;
> 

when invoked with make clean, delete all files/directories that end with a ~, or 
those that start and end with a # (which is escaped by the \). 

the second -f is redundant

Andrew


Reply to: