home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / gnu / libsrc87 / cmakefil.e < prev    next >
Encoding:
Text File  |  1993-07-30  |  538 b   |  34 lines

  1. #
  2. #
  3. #
  4. # Top level Makefile for TOS-Gcc library in unix hosted cross dev environment
  5. #
  6.  
  7. all: lshort llong lgshort lglong
  8.  
  9. lshort:
  10.     make -f CMakefile.16 clean
  11.     make -f CMakefile.16 all
  12.  
  13. llong:
  14.     make -f CMakefile.32 clean
  15.     make -f CMakefile.32 all
  16.  
  17. lgshort:
  18.     make -f CGMakefile.16 clean
  19.     make -f CGMakefile.16 all
  20.  
  21. lglong:
  22.     make -f CGMakefile.32 clean
  23.     make -f CGMakefile.32 all
  24.  
  25. clean:
  26.     make -f CMakefile.16 clean
  27.     make -f CMakefile.32 clean
  28.  
  29. realclean:
  30.     make -f CMakefile.16 realclean
  31.     make -f CMakefile.32 realclean
  32.     rm -f core report
  33.