home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / os2sdk / os2sdk11 / tk2 / example / testprof.mak < prev   
Encoding:
Text File  |  1989-02-01  |  463 b   |  31 lines

  1. #   ------------  testprof.exe makefile   Test Profile Sample Program
  2. #   ------------
  3.  
  4. PROINC = ../
  5. CFLAGS = -c -G2s -Zep -Od -DLINT_ARGS -DDEBUG -DPROFILE -I$(PROINC)
  6. AFLAGS = -Mx -t
  7.  
  8.  
  9. # ***** Rules
  10.  
  11. .c.obj:
  12.     cl $(CFLAGS) $*.c
  13.  
  14. .asm.obj:
  15.     masm $(AFLAGS) $*.asm;
  16.  
  17.  
  18. # ***** Dependencies
  19.  
  20. testprof.obj:    testprof.c $(PROINC)profile.h
  21.  
  22.  
  23. # ***** LINK step
  24.  
  25. testprof.exe: testprof.obj testprof.lrf testprof.def
  26.     link @testprof.lrf
  27.  
  28. 
  29. 
  30. 
  31.