home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pwrgu2.zip / POWERGU2.EXE / EXTLIB / VALUESET / MAKEFILE next >
Text File  |  1995-07-06  |  664b  |  27 lines

  1. ## Extending the Library - Value Set Example   
  2.  
  3.  
  4. ## CFLAGS = /Tdp /Gd+ /Ge+ /Gm+ /Wall+ext-gnr-got-por-ppt-uni-vft-ppc-
  5. CFLAGS = /Tdp /Gd+ /Ge+ /Gm+ 
  6. LFLAGS = /PM:PM /NOI
  7. LIBS = 
  8. OBJS = testvset.obj valueset.obj vsethdr.obj vsetevt.obj
  9.  
  10. ALL : testvset.exe 
  11.  
  12. testvset.exe : testvset.res $(OBJS)
  13.    icc $(CFLAGS) /B"$(LFLAGS)" /Fevalueset.exe $(LIBS) $(OBJS)
  14.    rc .\$*.res valueset.exe
  15.  
  16. testvset.cpp  : valueset.hpp vsethdr.hpp testvset.h
  17. valueset.cpp  : valueset.hpp
  18. vsethdr.cpp   : valueset.hpp vsethdr.hpp
  19. vsetevt.cpp   : vsetevt.hpp
  20. testvset.rc   : testvset.h
  21.  
  22. {.}.cpp.obj:
  23.    icc $(CFLAGS) /C+ .\$*.cpp
  24.  
  25. {.}.rc.res:
  26.    rc -r .\$*.rc
  27.