home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / static / textstyl / makefile next >
Makefile  |  1996-10-29  |  486b  |  23 lines

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