home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / menus / titlebmp / makefile < prev    next >
Encoding:
Makefile  |  1996-10-29  |  787 b   |  33 lines

  1. ## Menus - Title Bar Bitmaps
  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)\titlebmp.res
  9. RC=rc.exe -DIC_PM
  10.  
  11.  
  12. ALL :  CREATEDIR  $(ODIR)\titlebmp.exe
  13.  
  14. $(ODIR)\titlebmp.exe :  $(ODIR)\titlebmp.obj $(ODIR)\titlebmp.res
  15.    icc $(CFLAGS) /B"$(LFLAGS)" /Fe$(ODIR)\titlebmp.exe $(ODIR)\titlebmp.obj
  16.    $(RC) $(ODIR)\titlebmp.res $(ODIR)\titlebmp.exe
  17.  
  18. $(ODIR)\titlebmp.obj : titlebmp.cpp titlebmp.h
  19.    icc $(CFLAGS) /C+ /Fo$(ODIR)\titlebmp.obj titlebmp.cpp
  20.  
  21. $(ODIR)\titlebmp.res : titlebmp.rc titlebmp.h
  22.    $(RC) -r titlebmp.rc $(ORES)
  23.  
  24. CREATEDIR:
  25.   @if not exist $(ODIR)* md $(ODIR)
  26. !else
  27. ALL :  DISPLAYMSG
  28.  
  29. DISPLAYMSG:
  30.   @echo This sample is not supported on the Windows operating systems.
  31. !endif
  32.  
  33.