~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Alexander Belchenko
  • Date: 2006-07-31 17:48:17 UTC
  • mto: (1711.2.111 jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1906.
  • Revision ID: bialix@ukr.net-20060731174817-d829b8135e197aa5
Makefile: cross-platform actions for building installer

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
# make bzr.exe for win32 with py2exe
35
35
exe:
36
 
        @echo Make bzr.exe
 
36
        @echo *** Make bzr.exe
37
37
        python setup.py py2exe > py2exe.log
38
 
        copy /Y tools\win32\start_bzr.bat win32_bzr.exe\start_bzr.bat
39
 
        copy /Y tools\win32\bazaar.url win32_bzr.exe\bazaar.url
 
38
        python tools/win32/ostools.py copytodir tools/win32/start_bzr.bat win32_bzr.exe
 
39
        python tools/win32/ostools.py copytodir tools/win32/bazaar.url win32_bzr.exe
40
40
 
41
41
# translate txt docs to html
42
42
doc_dir := doc 
52
52
docs: $(htm_files)
53
53
 
54
54
copy_docs: docs
55
 
        copy /Y NEWS win32_bzr.exe\NEWS
56
 
        copy /Y README win32_bzr.exe\README
57
 
        python tools/win32/copy_docs.py
 
55
        python tools/win32/ostools.py copytodir $(htm_files) doc/default.css NEWS README  win32_bzr.exe/doc
58
56
 
59
57
# win32 installer for bzr.exe
60
58
installer: exe copy_docs
61
 
        @echo Make windows installer
62
 
        cog.py -d -o tools\win32\bzr.iss tools\win32\bzr.iss.cog
63
 
        iscc /Q tools\win32\bzr.iss
 
59
        @echo *** Make windows installer
 
60
        cog.py -d -o tools/win32/bzr.iss tools/win32/bzr.iss.cog
 
61
        iscc /Q tools/win32/bzr.iss
64
62
 
65
63
# win32 python's distutils-based installer
66
64
# require to have python interpreter installed on win32
70
68
 
71
69
# clean on win32 all installer-related files and directories
72
70
clean_win32:
73
 
        if exist build rmdir /S /Q build
74
 
        if exist win32_bzr.exe rmdir /S /Q win32_bzr.exe
75
 
        if exist py2exe.log del /Q py2exe.log
76
 
        if exist doc\*.htm del /Q doc\*.htm
77
 
        if exist doc\bzr_man.txt del /Q doc\bzr_man.txt
78
 
        if exist tools\win32\bzr.iss del /Q tools\win32\bzr.iss
79
 
        if exist bzr-setup*.exe del /Q bzr-setup*.exe
80
 
        if exist dist rmdir /S /Q dist
 
71
        python tools/win32/ostools.py remove build
 
72
        python tools/win32/ostools.py remove win32_bzr.exe
 
73
        python tools/win32/ostools.py remove py2exe.log
 
74
        python tools/win32/ostools.py remove doc/*.htm
 
75
        python tools/win32/ostools.py remove doc/bzr_man.txt
 
76
        python tools/win32/ostools.py remove tools/win32/bzr.iss
 
77
        python tools/win32/ostools.py remove bzr-setup*.exe
 
78
        python tools/win32/ostools.py remove dist