home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / os2sdk / os2sdk12 / dlgsamp / dlgsamp < prev    next >
Encoding:
Text File  |  1990-07-06  |  559 b   |  29 lines

  1. # Makefile for DLGSAMP.EXE
  2. # Created by Microsoft Corporation, 1989
  3. #
  4.  
  5. # Abbreviations
  6. #
  7. CC    =    cl -c -G2s -Od -Zpei -W3
  8. LF    =    /align:16 /codeview /map /NOD
  9.  
  10. # Inference Rules
  11. #
  12. .c.obj:
  13.     $(CC) $*.c
  14.  
  15. .rc.res:
  16.     rc -r $*.rc
  17.  
  18. all: dlgsamp.exe
  19.  
  20. # Dependencies
  21. #
  22. dlgsamp.res:    dlgsamp dlgsamp.dlg dlgsamp.h dlgsamp.ico dlgsamp.rc
  23.  
  24. dlgsamp.obj:    dlgsamp dlgsamp.c dlgsamp.h dlgsamp1.h
  25.  
  26. dlgsamp.exe:    dlgsamp dlgsamp.def dlgsamp.obj dlgsamp.res
  27.     link $(LF) dlgsamp, dlgsamp.exe, dlgsamp.map, os2 slibcep, dlgsamp.def
  28.     rc dlgsamp.res
  29.