1 # See tutorial on nmake -
2 # http://courses.cs.vt.edu/~cs1704/fall03/Notes/A10.NMAKE.pdf
4 # You may want to modify this variable to reflect your Wix path
5 WIXDIR
= "C:\Program Files\Windows Installer XML v3\bin"
8 fsc main.fs
-o llama.exe
10 llama-install.exe
: installer.wixobj
11 $(WIXDIR
)\light.exe installer.wixobj
13 installer.wixobj
: installer.wxs llama.exe
14 $(WIXDIR
)\candle.exe installer.wxs
17 # Targets you can use when invoking nmake
19 installer
: llama-install.exe