home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / waffle / allfil62.zip / MAKEFILE < prev    next >
Text File  |  1992-12-26  |  604b  |  27 lines

  1. #
  2. # MicroS*t C 7.00 nmake-file for allfiles -- Waffle 1.65 files lister
  3. # by Otto J. Makela (BBS V.32bis/HST +358 41 211 562)
  4. #
  5. # Distributed under the GNU General Public Licence:
  6. # see file COPYING for details
  7. #
  8.  
  9. CFLAGS    =    /Ox /Gs
  10.  
  11. allfiles.exe:    allfiles.obj formatch.obj wafcfg.obj
  12.     cl -F 3000 allfiles.obj formatch.obj wafcfg.obj
  13.     pklite allfiles
  14.  
  15. formatch.exe:    formatch.c
  16.     cl -DMAIN formatch.c
  17.     pklite formatch
  18.     del formatch.obj
  19.  
  20. wafcfg.exe:    wafcfg.c
  21.     cl -DMAIN wafcfg.c
  22.     pklite wafcfg
  23.     del wafcfg.obj
  24.  
  25. allfiles.obj formatch.obj:    formatch.h
  26. allfiles.obj wafcfg.obj:    wafcfg.h
  27.