home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1996 December / CD_shareware_12-96.iso / DOS / Programa / CCDL122.ZIP / CLIBS / LIB.MAK < prev    next >
Encoding:
Makefile  |  1996-07-31  |  790 b   |  43 lines

  1. !ifdef i386
  2. LIBLIST = ..\object\lib386.lst
  3. !else
  4. LIBLIST = ..\object\lib68k.lst
  5. !endif
  6.  
  7. LIBLOG = ..\lib.log
  8.  
  9. all:
  10.     cd alloc
  11.     del $(LIBLIST)
  12.     del $(LIBLOG)
  13.     make  >> $(LIBLOG)
  14.     cd ..\COMPLIB      
  15.     make  >> $(LIBLOG)
  16.     cd ..\CTYPE        
  17.     make  >> $(LIBLOG)
  18.     cd ..\DATA         
  19.     make  >> $(LIBLOG)
  20.     cd ..\IO           
  21.     make  >> $(LIBLOG)
  22.     cd ..\MATH         
  23.     make  >> $(LIBLOG)
  24.     cd ..\PROCONT      
  25.     make  >> $(LIBLOG)
  26.     cd ..\SORT         
  27.     make  >> $(LIBLOG)
  28.     cd ..\STARTUP      
  29.     make  >> $(LIBLOG)
  30.     cd alloc
  31.     cd ..\STRING       
  32.     make  >> $(LIBLOG)
  33.     cd ..\TIME         
  34.     make  >> $(LIBLOG)
  35.     cd ..\object
  36. !ifdef     i386
  37.     del    lib386.lib
  38.     tlib    lib386 @$(LIBLIST) >> $(LIBLOG)
  39. !else
  40.     del    lib68k.lib
  41.     lib    lib68k @$(LIBLIST) >> $(LIBLOG)
  42. !endif
  43.     cd ..