home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / clrwhl11.zip / exesrc / test.mak < prev    next >
Text File  |  1998-01-28  |  1KB  |  52 lines

  1. # test.mak
  2. # Creato dal MakeMake del WorkFrame/2 IBM alle 18:16:20 del 28 Gennaio 1998
  3. #
  4. # Le azioni incluse in questo file Make sono:
  5. #  Compile::Resource Compiler
  6. #  Compile::C++ Compiler
  7. #  Link::Linker
  8. #  Bind::Resource Bind
  9.  
  10. .SUFFIXES: .c .obj .rc .res 
  11.  
  12. .all: \
  13.     .\test.exe
  14.  
  15. .rc.res:
  16.     @echo " Compile::Resource Compiler "
  17.     rc.exe -r %s %|dpfF.RES
  18.  
  19. {F:\WORKDESK\Progetti\customcontrol\colorwheel}.rc.res:
  20.     @echo " Compile::Resource Compiler "
  21.     rc.exe -r %s %|dpfF.RES
  22.  
  23. .c.obj:
  24.     @echo " Compile::C++ Compiler "
  25.     icc.exe /Ss /Q /V"(c) 1997 * Alessandro Cantatore" /Oc /Rn /Gu /Ol /C %s
  26.  
  27. {F:\WORKDESK\Progetti\customcontrol\colorwheel}.c.obj:
  28.     @echo " Compile::C++ Compiler "
  29.     icc.exe /Ss /Q /V"(c) 1997 * Alessandro Cantatore" /Oc /Rn /Gu /Ol /C %s
  30.  
  31. .\test.exe: \
  32.     .\test.obj \
  33.     .\test.res \
  34.     {$(LIB)}editcol.lib
  35.     @echo " Link::Linker "
  36.     @echo " Bind::Resource Bind "
  37.     icc.exe @<<
  38.      /B" /exepack:2 /pmtype:pm /packd /optfunc /nologo"
  39.      /Fetest.exe 
  40.      editcol.lib 
  41.      .\test.obj
  42. <<
  43.     rc.exe -x2 .\test.res test.exe
  44.  
  45. .\test.res: \
  46.     F:\WORKDESK\Progetti\customcontrol\colorwheel\test.rc \
  47.     {F:\WORKDESK\Progetti\customcontrol\colorwheel;$(INCLUDE)}TEST.ICO
  48.  
  49. .\test.obj: \
  50.     F:\WORKDESK\Progetti\customcontrol\colorwheel\test.c \
  51.     {F:\WORKDESK\Progetti\customcontrol\colorwheel;$(INCLUDE);}editcol.h
  52.