.SUFFIXES: .c .obj .rc .res

.all: f:\projekte\mastermind\mmindde.dll

.rc.res:
    @echo " Compile::ResourceCompiler "
    rc -r %s %|dpfF.res

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

f:\projekte\mastermind\mmindde.obj: \
    f:\projekte\mastermind\mmindde.c \
    makedllde

f:\projekte\mastermind\mmindde.dll: \
    f:\projekte\mastermind\mmindde.obj \
    makedllde \
    f:\projekte\mastermind\deutsch.res \
    f:\projekte\mastermind\deutsch.def \
    f:\projekte\mastermind\deutsch.rc
    ilink.exe @<<
    /DLL /packd /e:2
    mmindde.obj
    deutsch.def
<<
    rc.exe f:\projekte\mastermind\deutsch.res f:\projekte\mastermind\mmindde.dll

f:\projekte\mastermind\deutsch.res: \
    f:\projekte\mastermind\deutsch.rc \
    makedllde \
    f:\projekte\mastermind\defines.h \

