mirror of
https://github.com/cmosher01/Epple-II.git
synced 2024-11-15 16:06:39 +00:00
18 lines
342 B
Makefile
18 lines
342 B
Makefile
EXTRA_DIST = epple2.wxs
|
|
|
|
if HAVE_WINDOWS
|
|
|
|
SUFFIXES = .wxs .wixobj .msi
|
|
|
|
all: epple2.msi
|
|
|
|
epple2.msi: epple2.wixobj ../src/epple2.exe
|
|
strip -o epple2.exe ../src/epple2.exe
|
|
light $< -out $@
|
|
cp $@ $(basename $@)-$(VERSION)$(suffix $@)
|
|
|
|
epple2.wixobj: epple2.wxs
|
|
candle $< -out $@ -dSDLDIR=/bin -dMINGWMDIR=/mingw/bin
|
|
|
|
endif
|