home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wpobj.zip / PROFILE.ZIP / PROFILE.MAK < prev    next >
Text File  |  1993-06-30  |  361b  |  23 lines

  1.  
  2. # MAKE file for profile.mak
  3.  
  4. CC=Icc
  5.  
  6. # Non-Debug Compile flags
  7. CFLAGS=-G3 -O+ -Rn -W3 -C
  8.  
  9. # Debug Compile flags
  10. # CFLAGS=-G3 -Ti+ -O- -Rn -W3 -C
  11.  
  12. # Non-Debug Link flags
  13. LFLAGS=
  14.  
  15. # Debug Link flags
  16. # LFLAGS=/DE
  17.  
  18. profile.Exe: profile.obj
  19.   Link386 $(LFLAGS) @profile.Lnk;
  20.  
  21. profile.obj: profile.c
  22.  $(CC) $(CFLAGS) -Fo profile.obj profile.C
  23.