#               *Definitions*
PROGNAME = Command
#		*Explicit Rules*
all:	english german russian
	@-del $(PROGNAME).com
	@-del $(PROGNAME).exe

english:	
	@-del $(PROGNAME).com
	@-del obj\*.obj
	tmake -DLANGUAGE=ENGLISH -DLANG=eng -f $(PROGNAME).mak
	@copy $(PROGNAME).com bin\$(PROGNAME).eng >nul

german:
	@-del $(PROGNAME).com
	@-del obj\*.obj
	tmake -DLANGUAGE=GERMAN -DLANG=ger -f $(PROGNAME).mak
	@copy $(PROGNAME).com bin\$(PROGNAME).ger >nul

russian:
	@-del $(PROGNAME).com
	@-del obj\*.obj
	tmake -S -DLANGUAGE=RUSSIAN -DLANG=rus -f $(PROGNAME).mak
	copy $(PROGNAME).com bin\$(PROGNAME).rus >nul
