home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / wps / com / zocdev / pip / makefile < prev    next >
Encoding:
Makefile  |  1993-12-02  |  647 b   |  27 lines

  1. ##
  2. ## MAKEFILE FOR IBM C-SET/2
  3. ##
  4.  
  5. .rc.res:
  6.         rc -r $*.rc
  7.  
  8.  
  9.  
  10. # Description of compileroptions
  11. # /C    just compile
  12. # /Ge-    build a DLL
  13. # /Gd-    use static runtime libraries
  14. # /Gm+    use multithread libs
  15. # /Q    don't print that silly (C) message
  16. # /Re     compile to use in runtime environment
  17. # /Sa    use strict ANSI
  18. # /Ss    allow // comments 
  19. # /Ms    use system linkage (necessary for DLLs)
  20. pipascii.dll: pipascii.c pip.h pipascii.def pipascii.res makefile
  21.     icc /Ti /Q /C /Ge- /Gd- /Gm+ /Re /Sa /Ss /Ms /Kb+ $*.c
  22.     link386 /CO /NOI $*, $*.dll, nul.map, os2386, $*.def;
  23.     rc pipascii.res pipascii.dll
  24.  
  25. pipascii.res: pipascii.rc pipascii.dlg
  26.  
  27.