home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / thread / signal / makefile next >
Makefile  |  1996-10-29  |  1KB  |  31 lines

  1. ################################################################
  2. # FILE NAME: makefile                                          #
  3. #                                                              #
  4. # DESCRIPTION:                                                 #
  5. #   makefile for signal.obj (event semaphore class used by     #
  6. #   thread sample programs)                                    #
  7. #                                                              #
  8. # COPYRIGHT:                                                   #
  9. #   Licensed Materials - Property of Solution Frameworks       #
  10. #   Copyright (C) 1996, Solution Frameworks                    #
  11. #   All Rights Reserved                                        #
  12. ################################################################
  13. CFLAGS = /Ft- /Gd+ /Ge+ /Gm+ /Wall+gnr-ppc-ppt-uni-vft-
  14. LFLAGS = /PM:VIO
  15.  
  16. !ifdef IC_PM
  17. ODIR=.\os2
  18. !else
  19. ODIR=.\win
  20. !endif
  21.  
  22.  
  23. ALL :  CREATEDIR  $(ODIR)\signal.obj
  24.  
  25. $(ODIR)\signal.obj: signal.cpp signal.hpp
  26.    icc $(CFLAGS) /C+ /Fo$@ signal.cpp
  27.  
  28. CREATEDIR:
  29.   @if not exist $(ODIR) md $(ODIR)
  30.  
  31.