home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / data / igrep / makefile < prev   
Makefile  |  1996-10-29  |  457b  |  24 lines

  1. ## Data Types - Using IString::isLike
  2.  
  3. CFLAGS = /Ft- /Gd+ /Ge+ /Gm+ /Wall+gnr-ppc-ppt-uni-vft-
  4. LFLAGS =
  5.  
  6. !ifdef IC_PM
  7. ODIR=.\os2
  8. !else
  9. ODIR=.\win
  10. !endif
  11.  
  12.  
  13. ALL : CREATEDIR   $(ODIR)\igrep.exe
  14.  
  15. $(ODIR)\igrep.exe :  $(ODIR)\igrep.obj
  16.    icc $(CFLAGS) /B"$(LFLAGS)" /Fe$(ODIR)\igrep.exe $(ODIR)\igrep.obj
  17.  
  18. $(ODIR)\igrep.obj: igrep.cpp
  19.    icc $(CFLAGS) /C+  /Fo$(ODIR)\igrep.obj  igrep.cpp
  20.  
  21. CREATEDIR:
  22.   @if not exist $(ODIR)* md $(ODIR)
  23.  
  24.