home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / call32.zip / dll.mak < prev    next >
Text File  |  1992-08-12  |  438b  |  29 lines

  1. # IBM Developer's Workframe/2 Make File Creation run at 12:00:56 on 02/07/92
  2.  
  3. # Make File Creation run in directory:
  4. #   D:\CLASS\DLL;
  5.  
  6. .SUFFIXES:
  7.  
  8. .SUFFIXES: .c
  9.  
  10. dll.dll:  \
  11.   DLL.OBJ \
  12.   dll.DEF \
  13.   DLL.MAK
  14.    @REM @<<DLL.@0
  15.      /DE /PM:VIO +
  16.      DLL.OBJ
  17.      dll.dll
  18.  
  19.  
  20.      dll.DEF;
  21. <<
  22.    LINK386.EXE @DLL.@0
  23.   IMPLIB dll.LIB dll.DEF
  24.  
  25. {.}.c.obj:
  26.    ICC.EXE /Ss /Kboa /Ti /Ge- /C .\$*.c
  27.  
  28. !include DLL.DEP
  29.