home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / s / stex2-18.zip / SeeTeX / NoImake < prev    next >
Text File  |  1991-02-19  |  428b  |  19 lines

  1. #!/bin/sh
  2.  
  3. cat Imake.cpp Imakefile | /lib/cpp > Makefile.tmp
  4. m4 Imake.m4 Makefile.tmp > Makefile
  5. rm -f Makefile.tmp
  6.  
  7. COMMON_SUBDIRS="libtex Xtex Mftobdf Dviselect Dviconcat \
  8.           Texx Iptex Fonts Texsun Tex3b1"
  9.  
  10. for dir in ${COMMON_SUBDIRS} ;
  11. do 
  12.     echo Build makefile in $dir ;
  13.     (cd $dir;
  14.     cat ../Imake.cpp Imakefile | /lib/cpp > Makefile.tmp ; 
  15.     m4 ../Imake.m4 Makefile.tmp > Makefile ;
  16.     rm -f Makefile.tmp ; 
  17.     )
  18. done
  19.