home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / frame1 / modal / makefile next >
Encoding:
Makefile  |  1996-10-29  |  473 b   |  23 lines

  1. ## Frame Window Basics - Showing a Modal Frame Window
  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)\modal.exe
  14.  
  15. $(ODIR)\modal.exe : $(ODIR)\modal.obj
  16.    icc $(CFLAGS) /B"$(LFLAGS)" /Fe$(ODIR)\modal.exe $(ODIR)\modal.obj
  17.  
  18. $(ODIR)\modal.obj: modal.cpp
  19.    icc $(CFLAGS) /C+ /Fo$(ODIR)\modal.obj modal.cpp
  20.  
  21. CREATEDIR:
  22.   @if not exist $(ODIR)* md $(ODIR)
  23.