# Change this path to match your system
!include c:\mstools\mfc\samples\ntsample.mak

# Change the following name to compile 
# different files
FILENAME=mandel2

OBJS=$(FILENAME).obj

$(FILENAME).exe: $(OBJS) mandel.res mandel.def 
	$(LINK) $(GUIFLAGS) -out:$(FILENAME).exe \
	  $(FILENAME).obj $(MFCLIB) $(GUILIBS) \
	  mandel.res
