installer is functional, but too primitive
[llama.git] / Makefile
blob4dca1f28a4805dff8d3e3c95436a5222002a1488
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"
7 llama.exe : main.fs
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
18 llama: llama.exe
19 installer: llama-install.exe
20 clean:
21 del *.exe *obj *.msi