home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / unixtex-6.1b-src.tgz / tar.out / contrib / unixtex / make / misc.make < prev    next >
Text File  |  1996-09-28  |  875b  |  32 lines

  1. # misc.make -- cleaning, etc.
  2. TAGS: *.c *.h
  3.     if pwd | grep kpathsea >/dev/null; then \
  4.       etags *.c *.h; else etags -i $(kpathsea_dir)/TAGS *.c *.h; fi
  5.  
  6. mostlyclean::
  7.     rm -f *.o $(program) $(programs) squeeze $(library).a
  8.  
  9. clean:: mostlyclean
  10.     rm -f *.dvi *.lj
  11.  
  12. distclean:: clean
  13.     rm -f Makefile MakeTeXPK *.pool
  14.     rm -f config.status config.log config.cache c-auto.h 
  15.  
  16. # Although we can remake configure and c-auto.h.in, we don't remove
  17. # them, since many people may lack Autoconf.  Use configclean for that.
  18. realclean:: distclean
  19.     rm -f TAGS *.info*
  20.  
  21. extraclean::
  22.     rm -f *.aux *.bak *.bbl *.blg *.dvi *.log *.orig *.pl *.rej
  23.     rm -f *.i *.s *.tfm *.vf *.vpl *\#* *gf *pk *~
  24.     rm -f CONTENTS.tex a.out core mfput.* texput.*
  25.  
  26. configclean:
  27.     rm -f configure c-auto.h.in c-auto.h
  28.  
  29. # Prevent GNU make 3.[59,63) from overflowing arg limit on system V.
  30. .NOEXPORT:
  31. # End of misc.make.
  32.