Statistics
| Revision:

root / trunk / install / launcher / izpack-launcher-1.3 / src / Makefile.mingw @ 11445

History | View | Annotate | Download (1023 Bytes)

1 6028 jmvivo
# Makefile for MinGW on Win32.
2
# Based on the samples from wxWidgets.
3
4
WXDIR = ${WXWIN}
5
FINAL = 1
6
7
TARGET=launcher
8 7329 jmvivo
OBJECTS = $(TARGET).o failuredialog.o statusdialog.o myIniReader.o
9 6028 jmvivo
10
include $(WXDIR)/src/makeprog.g95
11
12
install: all install_lang
13
14
	copy $(TARGET).exe ..\dist\launcher-Win32.exe
15
	strip ../dist/launcher-Win32.exe
16
	copy launcher.exe.manifest ..\dist\launcher-Win32.exe.manifest
17 7269 jmvivo
	if not exist ..\dist\launcher-Win32.ini copy launcher.ini ..\dist\launcher-Win32.ini
18 6028 jmvivo
19
install_lang:
20
	if not exist ..\dist\fr mkdir ..\dist\fr
21
	if not exist ..\dist\de mkdir ..\dist\de
22
	if not exist ..\dist\da mkdir ..\dist\da
23
	if not exist ..\dist\pt-BR mkdir ..\dist\pt-BR
24
	if not exist ..\dist\es mkdir ..\dist\es
25
	if not exist ..\dist\it mkdir ..\dist\it
26
	if not exist ..\dist\nl mkdir ..\dist\nl
27
	copy fr\launcher.mo ..\dist\fr
28
	copy es\launcher.mo ..\dist\es
29
	copy de\launcher.mo ..\dist\de
30
	copy da\launcher.mo ..\dist\da
31
	copy pt-BR\launcher.mo ..\dist\pt-BR
32
	copy it\launcher.mo ..\dist\it
33
	copy nl\launcher.mo ..\dist\nl