home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-02-22 | 533 b | 28 lines |
- # wordseq.mak
- #
- # The actions included in this make file are:
- # C++ Compiler
- # Linker
-
- .SUFFIXES:
-
- .all: \
- .\wordseq.exe
-
- .\wordseq.obj: \
- .\wordseq.cpp \
- {.\;$(INCLUDE);}toyword.h
- @echo " C++ Compiler "
- icc.exe /Tdp /Gh /Ti /Gm /Gd /Fb /Ft- /Fo"wordseq.obj" /C .\wordseq.cpp
-
- .\wordseq.exe: \
- .\wordseq.obj \
- {.\;$(LIB);}CPPWPA3.OBJ
- @echo " Linker "
- icc.exe @<<
- /B" /de /br /m /l /code:RX /data:RW"
- /def /Fewordseq.exe
- CPPWPA3.OBJ
- wordseq.obj
- <<
-