home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / warptlk3.zip / TOOLKIT / SAMPLES / MM / DOUBPLAY / DOUBPLAY.MAK < prev    next >
Text File  |  1995-09-06  |  1KB  |  51 lines

  1.  
  2. #**************************************************************************
  3. # *
  4. # * File Name        : DOUBPLAY.MAK
  5. # *
  6. # * Description      : Makefile for DOUBPLAY.EXE
  7. # *
  8. # *
  9. # * Copyright (C) 1992 IBM Corporation
  10. # *
  11. # *     DISCLAIMER OF WARRANTIES.  The following [enclosed] code is
  12. # *     sample code created by IBM Corporation. This sample code is not
  13. # *     part of any standard or IBM product and is provided to you solely
  14. # *     for  the purpose of assisting you in the development of your
  15. # *     applications.  The code is provided "AS IS", without
  16. # *     warranty of any kind.  IBM shall not be liable for any damages
  17. # *     arising out of your use of the sample code, even if they have been
  18. # *     advised of the possibility of such damages.
  19. # *
  20. # ****************************************************************************/
  21. CC          = icc
  22. LINK        = link386
  23.  
  24. BASELIBS    = DDE4MBS.LIB OS2386.LIB MMPM2.LIB
  25.  
  26. CTARG      = /G3s
  27. COMPILE    = /C+ /W3 /Ss+ /Gd- /DINCL_32 /Ms
  28. DEBUG      = /Ti+ /O-
  29. CM_THREAD  = /Gm+
  30.  
  31. CFLAGS  = $(COMPILE) $(CTARG) $(CM_THREAD)
  32.  
  33.  
  34. LFLAGS  = /map /nod /noe
  35.  
  36. all: doubplay.exe
  37.  
  38.  
  39.  
  40. doubplay.exe : doubplay.obj doubplay.res doubplay.def
  41.  $(LINK) doubplay.obj, doubplay.exe, $(LFLAGS) /ST:36000, $(BASELIBS), doubplay.def
  42.   rc doubplay.res
  43.  
  44.  
  45. doubplay.obj : doubplay.c doubplay.h
  46.   $(CC) $(CFLAGS) doubplay.c
  47.  
  48. doubplay.res : doubplay.rc doubplay.dlg doubplay.h doubplay.ico
  49.   rc -r doubplay.rc
  50.  
  51.