home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-12-02 | 647 b | 27 lines |
- ##
- ## MAKEFILE FOR IBM C-SET/2
- ##
-
- .rc.res:
- rc -r $*.rc
-
-
-
- # Description of compileroptions
- # /C just compile
- # /Ge- build a DLL
- # /Gd- use static runtime libraries
- # /Gm+ use multithread libs
- # /Q don't print that silly (C) message
- # /Re compile to use in runtime environment
- # /Sa use strict ANSI
- # /Ss allow // comments
- # /Ms use system linkage (necessary for DLLs)
- pipascii.dll: pipascii.c pip.h pipascii.def pipascii.res makefile
- icc /Ti /Q /C /Ge- /Gd- /Gm+ /Re /Sa /Ss /Ms /Kb+ $*.c
- link386 /CO /NOI $*, $*.dll, nul.map, os2386, $*.def;
- rc pipascii.res pipascii.dll
-
- pipascii.res: pipascii.rc pipascii.dlg
-
-