Config = Debug
TargetDir = $(ASMLDEVDIR)\bin\$(Config) 
Source = WordGenerator.exe
Target = $(TargetDir)\WordGenerator.exe

all: $(Target)

$(Target): $(Source)
	copy $(Source) $(TargetDir)

clean:
	-del $(Target)

rebuild: clean all

install:

