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