# makefile
# Created by IBM WorkFrame/2 MakeMake at 15:40:01 on 9 Nov 1995
#
# The actions included in this make file are:
#  Compile::C++ Compiler
#  Link::Linker

.SUFFIXES: .c .o

.all: \
    sample02.exe

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

sample02.exe: \
    sample02.o \
    sample02.def
    @echo " Link::Linker "
    icc.exe /Gm+ /Gd @<<
     sample02.def
     sample02.o
<<

sample02.o: \
    sample02.c


clean:
    erase sample02.o sample02.exe
