home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / compiler / tls / makefile next >
Encoding:
Makefile  |  1996-02-20  |  297 b   |  21 lines

  1. .SUFFIXES: .C .obj .
  2.  
  3. .all: tls.exe
  4.  
  5. .C.obj:
  6.     @echo " Compile::C Compiler "
  7.     icc.exe  /Ti /Gh /Fo"tls.obj" /C %s
  8.  
  9. tls.exe: \
  10.     tls.obj
  11.     @echo " Link::Linker "
  12.     icc.exe @<<
  13.      /B" /de /noe"
  14.      /Fetls.exe
  15.      tls.obj
  16.      cppwpa3.obj
  17. <<
  18.  
  19. tls.obj: \
  20.     tls.c
  21.