home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / RB3641.ZIP / EX1 / DLGDLL.MAK < prev    next >
Text File  |  1991-12-16  |  542b  |  21 lines

  1. # Compiler Switches:
  2. #
  3. # /c    - Supresses Linking
  4. # /Alfu - Customised large memory model
  5. #         (l) far pointers for code
  6. #         (f) far pointers for data
  7. #         (u) different segments for stack and data
  8. # /Gs   - Removes stack probes
  9.  
  10. dlgdll.obj:  dlgdll.c 
  11.         cl -c -Alfu -Gs  dlgdll.c
  12.  
  13. dlgdll.res:   dlgdll.rc about.dlg  
  14.         rc -r dlgdll.rc
  15.  
  16. dlgdll.dll:  dlgdll.obj dlgdll.def dlgdll.res 
  17.         link  dlgdll.obj, dlgdll.dll, dlgdll, /nod llibcdll os2, dlgdll
  18.         rc dlgdll.res  dlgdll.dll
  19.  
  20.  
  21.