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

  1. ###########################################################################
  2. #                                                                         #
  3. # MAKE FILE FOR NBLOAD.EXE                                                #
  4. #                                                                         #
  5. # NOTES:                                                                  #
  6. #                                                                         #
  7. #  To enable the C Set/2 memory management debugging code, uncomment the  #
  8. #  DEBUGALLOC macro. The debugging info will be sent to NBLOAD.DBG.       #
  9. #                                                                         #
  10. # HISTORY:                                                                #
  11. #                                                                         #
  12. #  10-17-92 - created                                                     #
  13. #                                                                         #
  14. #  Rick Fishman                                                           #
  15. #  Code Blazers, Inc.                                                     #
  16. #  4113 Apricot                                                           #
  17. #  Irvine, CA. 92720                                                      #
  18. #  CIS ID: 72251,750                                                      #
  19. #                                                                         #
  20. ###########################################################################
  21.  
  22. #DEBUGALLOC=-D__DEBUG_ALLOC__
  23.  
  24. BASE=nbload
  25.  
  26. CFLAGS=/Q+ /Ss /W3 /Kbcepr /Gm- /Gd- /Ti+ /O- $(DEBUGALLOC) /C
  27. LFLAGS=/NOI /MAP /DE /NOL /A:16 /EXEPACK /BASE:65536
  28.  
  29. .SUFFIXES: .c
  30.  
  31. .c.obj:
  32.     icc $(CFLAGS) $*.c
  33.  
  34. $(BASE).exe: $*.obj $*.def $*.res
  35.     link386 $(LFLAGS) $*,,, os2386, $*
  36.     rc $*.res $*.exe
  37.  
  38. $(BASE).res: $*.rc $*.dlg
  39.     rc -r $*
  40.  
  41. $(BASE).obj: $*.c $*.h
  42.  
  43. ###########################################################################
  44. #                       E N D   O F   S O U R C E                         #
  45. ###########################################################################
  46.