# transtab.mak
#
# The actions included in this make file are:
#  C++ Compiler
#  Linker

.SUFFIXES:

.all: \
    .\transtab.exe

.\transtab.obj: \
    .\transtab.cpp \
    {.\;$(INCLUDE);}transelm.h \
    {.\;$(INCLUDE);}trmapops.h \
    {.\;$(INCLUDE);}xebc2asc.h
    @echo " C++ Compiler "
    icc.exe /Tdp /Gh /Ti /Gm /Gd /Fb /Ft- /Fo"transtab.obj" /C .\transtab.cpp

.\transtab.exe: \
    .\transtab.obj \
     {.\;$(LIB);}CPPWPA3.OBJ
    @echo " Linker "
    icc.exe @<<
     /B" /de /br /m /l /code:RX /data:RW"
     /def /Fetranstab.exe
     CPPWPA3.OBJ
     transtab.obj
<<
