home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / thread / starting / makefile next >
Encoding:
Makefile  |  1996-10-29  |  1.1 KB  |  34 lines

  1. ################################################################
  2. # FILE NAME: makefile                                          #
  3. #                                                              #
  4. # DESCRIPTION:                                                 #
  5. #   makefile for the IThread::start demo program               #
  6. #                                                              #
  7. # COPYRIGHT:                                                   #
  8. #   Licensed Materials - Property of Solution Frameworks       #
  9. #   Copyright (C) 1996, Solution Frameworks                    #
  10. #   All Rights Reserved                                        #
  11. ################################################################
  12. CFLAGS = /Ft- /Gd+ /Ge+ /Gm+ /Wall+gnr-ppc-ppt-uni-vft-
  13. LFLAGS = /PM:PM
  14.  
  15. !ifdef IC_PM
  16. ODIR=.\os2
  17. !else
  18. ODIR=.\win
  19. !endif
  20.  
  21.  
  22. ALL :  CREATEDIR  $(ODIR)\starting.exe
  23.  
  24. !ifdef IC_PM
  25. $(ODIR)\starting.exe :  starting.cpp
  26. !else
  27. $(ODIR)\starting.exe :  starting.cpp wrapper.hpp
  28. !endif
  29.    icc $(CFLAGS) /B"$(LFLAGS)" /Fo$(ODIR)\starting.obj /Fe$@ starting.cpp
  30.  
  31. CREATEDIR:
  32.   @if not exist $(ODIR) md $(ODIR)
  33.  
  34.