home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / ioc / transtab / makefile next >
Encoding:
Makefile  |  1996-02-22  |  612 b   |  30 lines

  1. # transtab.mak
  2. #
  3. # The actions included in this make file are:
  4. #  C++ Compiler
  5. #  Linker
  6.  
  7. .SUFFIXES:
  8.  
  9. .all: \
  10.     .\transtab.exe
  11.  
  12. .\transtab.obj: \
  13.     .\transtab.cpp \
  14.     {.\;$(INCLUDE);}transelm.h \
  15.     {.\;$(INCLUDE);}trmapops.h \
  16.     {.\;$(INCLUDE);}xebc2asc.h
  17.     @echo " C++ Compiler "
  18.     icc.exe /Tdp /Gh /Ti /Gm /Gd /Fb /Ft- /Fo"transtab.obj" /C .\transtab.cpp
  19.  
  20. .\transtab.exe: \
  21.     .\transtab.obj \
  22.      {.\;$(LIB);}CPPWPA3.OBJ
  23.     @echo " Linker "
  24.     icc.exe @<<
  25.      /B" /de /br /m /l /code:RX /data:RW"
  26.      /def /Fetranstab.exe
  27.      CPPWPA3.OBJ
  28.      transtab.obj
  29. <<
  30.