home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wpsgpf.zip / MAKEFILE < prev    next >
Text File  |  1995-01-27  |  941b  |  51 lines

  1. #/*****************************************************************************
  2. #/
  3. #/ TITLE:          Simple WPS Class
  4. #/
  5. #/ FILE:           makefile
  6. #/
  7. #/ CLASS:          WPSimple
  8. #/
  9. #/ MAJOR CHANGES:  00.00
  10. #/
  11. #/ DESCRIPTION:    see sim.c
  12. #/
  13. #/ (C) Copyright SE International, Inc. 1993. All rights reserved.
  14. #/ (C) Copyright SES GmbH Berlin 1993.        All rights reserved.
  15. #/
  16. #/*****************************************************************************
  17.  
  18. .SUFFIXES:
  19.  
  20. .SUFFIXES: .c .rc .csc .sc
  21.  
  22. ALL: SIM.DLL \
  23.      SIM.RES
  24.  
  25. SIM.DLL:  \
  26.   SIM.OBJ \
  27.   sim.res \
  28.   SIM.def
  29.    @REM @<<SIM.@0
  30.      /CO /NOLOGO /NOI +
  31.      SIM.OBJ
  32.      SIM.dll
  33.  
  34.      somtk.lib aaa.lib
  35.      SIM.def;
  36. <<
  37.    LINK386.EXE @SIM.@0
  38.    RC SIM.RES SIM.DLL
  39.    IMPLIB SIM.LIB SIM.def
  40.  
  41. {.}.rc.res:
  42.    RC -r .\$*.RC
  43.  
  44. {.}.csc.c:
  45.    sc .\$*.csc
  46.  
  47. {.}.c.obj:
  48.    ICC.EXE /Q /Ss /Ti /Gm /Ge- /C .\$*.c
  49.  
  50. !include MAKEFILE.DEP
  51.