comparison Makefile.in @ 260:e5d119ea4c63 libtomcrypt LTC_DB_0.47

Make the clean target a bit saner
author Matt Johnston <matt@ucc.asn.au>
date Tue, 06 Dec 2005 17:18:41 +0000
parents 7adce1fbdbff
children
comparison
equal deleted inserted replaced
230:809b681a9af5 260:e5d119ea4c63
228 228
229 229
230 #This rule cleans the source tree of all compiled code, not including the pdf 230 #This rule cleans the source tree of all compiled code, not including the pdf
231 #documentation. 231 #documentation.
232 clean: 232 clean:
233 rm -f `find . -type f | grep "[.]o" | xargs` 233 -rm -f $(OBJECTS)
234 rm -f `find . -type f | grep "[.]lo" | xargs` 234 -rm -f libtomcrypt.a
235 rm -f `find . -type f | grep "[.]a" | xargs`
236 rm -f `find . -type f | grep "[.]la" | xargs`
237 rm -f `find . -type f | grep "[.]obj" | xargs`
238 rm -f `find . -type f | grep "[.]lib" | xargs`
239 rm -f `find . -type f | grep "[.]exe" | xargs`
240 rm -f `find . -type f | grep "[.]gcda" | xargs`
241 rm -f `find . -type f | grep "[.]gcno" | xargs`
242 rm -f `find . -type f | grep "[.]il" | xargs`
243 rm -f `find . -type f | grep "[.]dyn" | xargs`
244 rm -f `find . -type f | grep "[.]dpi" | xargs`
245 rm -rf `find . -type d | grep "[.]libs" | xargs`
246 rm -f crypt.aux crypt.dvi crypt.idx crypt.ilg crypt.ind crypt.log crypt.toc
247 rm -f $(TV) $(PROF) $(SMALL) $(CRYPT) $(HASHSUM) $(MULTI) $(TIMING) $(TEST)
248 rm -rf doc/doxygen
249 rm -f doc/*.pdf
250 rm -f *.txt
251 235
252 #build the doxy files (requires Doxygen, tetex and patience) 236 #build the doxy files (requires Doxygen, tetex and patience)
253 doxy: 237 doxy:
254 doxygen 238 doxygen
255 cd doc/doxygen/latex ; make ; mv -f refman.pdf ../../. 239 cd doc/doxygen/latex ; make ; mv -f refman.pdf ../../.