FILES=LogoRep.fs LogoParser.fs LogoLexer.fs Load.fs Execute.fs Serve.fs Main.fs all: krunimir.exe krunimir.exe: $(FILES) fsc.exe --standalone --resident --optimize+ --tailcalls+ --crossoptimize+ -r FSharp.PowerPack.dll --out:$@ $^ krunimir_bundle: krunimir.exe mkbundle2 --static --deps -o $@ $< strip $@ %.fs: %.fsl fslex.exe --unicode $< %.fs: %.fsy fsyacc.exe --module $* $< .PHONY: clean clean: rm -rf krunimir.exe krunimir_bundle LogoLexer.fs LogoParser.fs LogoParser.fsi