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

  1. ################################################################
  2. # FILE NAME: makefile                                          #
  3. #                                                              #
  4. # DESCRIPTION:                                                 #
  5. #   makefile for thread exit test 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:VIO
  14.  
  15. !ifdef IC_PM
  16. ODIR=.\os2
  17. !else
  18. ODIR=.\win
  19. !endif
  20.  
  21.  
  22. ALL :  CREATEDIR  $(ODIR)\threadex.exe
  23.  
  24. $(ODIR)\threadex.exe :  $(ODIR)\threadex.obj
  25.    icc $(CFLAGS) /B"$(LFLAGS)" /Fe$(ODIR)\threadex.exe $(ODIR)\threadex.obj
  26.  
  27. $(ODIR)\threadex.obj: threadex.cpp
  28.    icc $(CFLAGS) /C+  /Fo$(ODIR)\threadex.obj  threadex.cpp
  29.  
  30. CREATEDIR:
  31.   @if not exist $(ODIR) md $(ODIR)
  32.  
  33.