home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / NBEZ.ZIP / MAKEFILE next >
Text File  |  1992-12-05  |  2KB  |  39 lines

  1. ###########################################################################
  2. #                                                                         #
  3. # MAKE FILE FOR NBEZ.EXE                                                  #
  4. #                                                                         #
  5. # HISTORY:                                                                #
  6. #                                                                         #
  7. #  12-05-92 - copied from the NBBASE makefile                             #
  8. #                                                                         #
  9. #  Rick Fishman                                                           #
  10. #  Code Blazers, Inc.                                                     #
  11. #  4113 Apricot                                                           #
  12. #  Irvine, CA. 92720                                                      #
  13. #  CIS ID: 72251,750                                                      #
  14. #                                                                         #
  15. ###########################################################################
  16.  
  17. BASE=nbez
  18.  
  19. CFLAGS=/Q+ /Ss /W3 /Kbcepr /Ti+ /O- /C
  20. LFLAGS=/NOI /MAP /DE /NOL /A:16 /EXEPACK /BASE:65536
  21.  
  22. .SUFFIXES: .c
  23.  
  24. .c.obj:
  25.     icc $(CFLAGS) $*.c
  26.  
  27. $(BASE).exe: $*.obj $*.def $*.res
  28.     link386 $(LFLAGS) $*,,, os2386, $*
  29.     rc $*.res $*.exe
  30.  
  31. $(BASE).res: $*.rc $*.dlg
  32.     rc -r $*
  33.  
  34. $(BASE).obj: $*.c $*.h
  35.  
  36. ###########################################################################
  37. #                       E N D   O F   S O U R C E                         #
  38. ###########################################################################
  39.