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

.SUFFIXES: .c .obj 

.all: \
    main03.exe
    cd sort
    nmake 
    copy sample03.dll ..\sample03.dll
    cd ..

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

main03.exe: \
    main03.o stubctor.o
    @echo " Link::Linker "
    icc.exe -Gd+ main03.def main03.o stubctor.o

main03.o: \
    main03.c \
    sample03.h


clean:
    erase main03.o main03.exe stubctor.o
    erase sample03.dll
    cd sort
    nmake clean


