home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / cnr / treeicov / makefile next >
Makefile  |  1996-10-29  |  893b  |  35 lines

  1. ## Container Control - Tree Icon ViewDelayed Page Loading
  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. ORES=$(ODIR)\treeicov.res
  9. RC=rc.exe -DIC_PM
  10. !else
  11. ODIR=.\win
  12. ORES=
  13. RC=irc.exe -Fo$(ODIR)\treeicov.res
  14. !endif
  15.  
  16.  
  17. ALL : CREATEDIR   $(ODIR)\treeicov.exe
  18.  
  19. $(ODIR)\treeicov.exe :  $(ODIR)\treeicov.obj $(ODIR)\treeicov.res
  20. !ifdef IC_PM
  21.    icc $(CFLAGS) /B"$(LFLAGS)" /Fe$(ODIR)\treeicov.exe $(ODIR)\treeicov.obj
  22.    $(RC) $(ODIR)\treeicov.res  $(ODIR)\treeicov.exe
  23. !else
  24.    icc $(CFLAGS) /B"$(LFLAGS)" /Fe$(ODIR)\treeicov.exe  $(ODIR)\treeicov.obj $(ODIR)\treeicov.res
  25. !endif
  26.  
  27. $(ODIR)\treeicov.obj: treeicov.cpp treeicov.h
  28.    icc $(CFLAGS) /C+  /Fo$(ODIR)\treeicov.obj  treeicov.cpp
  29.  
  30. $(ODIR)\treeicov.res:  treeicov.rc treeicov.h
  31.    $(RC) -r treeicov.rc $(ORES)
  32.  
  33. CREATEDIR:
  34.   @if not exist $(ODIR)* md $(ODIR)
  35.