# makefile
#
# The actions included in this make file are:
#  Compile::C++ Compiler
#  Link::Linker

.SUFFIXES: .c .o

.all: \
    main05.exe
    cd dll
    nmake
    cd ..

.c.o:
    @echo " Compile::C++ Compiler "
    icc.exe /Ti /C %s

main05.exe: \
    main05.o stubctor.o \
    main05.def
    @echo " Link::Linker "
    icc.exe /Ti /Gd+ main05.def main05.o stubctor.o

main05.o: \
    main05.c \
    sample05.h

clean:
      erase main05.o main05.exe sample05.dll stubctor.o
      cd dll
      nmake clean
