X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6230a84fdc327322f7bc6073b92cf34a8f92c47b..8775b357008a14fd2acdd2e2c70600f1c6346504:/utils/wxPython/src/build.cfg diff --git a/utils/wxPython/src/build.cfg b/utils/wxPython/src/build.cfg index e0cd0cd43b..27710ddeb3 100644 --- a/utils/wxPython/src/build.cfg +++ b/utils/wxPython/src/build.cfg @@ -22,6 +22,14 @@ dist: cd ..\.. wxPython\distrib\zipit.bat $(VERSION) +dbg: + cd ..\distrib + makedbg.bat $(VERSION) + +dev: + cd ..\distrib + makedev.bat $(VERSION) + __version__.py: ../distrib/build.py build.cfg echo ver = '$(VERSION)' > __version__.py @@ -55,14 +63,17 @@ installLibDemo: @if [ "$(TARGETDIR)" != ".." -a "$(TARGETDIR)" != "$(WXWIN)/utils/wxPython" ]; then \\ mkdir $(TARGETDIR)/lib; \\ mkdir $(TARGETDIR)/lib/sizers; \\ + mkdir $(TARGETDIR)/lib/editor; \\ mkdir $(TARGETDIR)/demo; \\ mkdir $(TARGETDIR)/demo/bitmaps; \\ mkdir $(TARGETDIR)/demo/data; \\ cp ../lib/*.py $(TARGETDIR)/lib; \\ cp ../lib/sizers/*.py $(TARGETDIR)/lib/sizers; \\ + cp ../lib/editor/*.py $(TARGETDIR)/lib/editor; \\ cp ../demo/*.py $(TARGETDIR)/demo; \\ cp ../lib/*.txt $(TARGETDIR)/lib; \\ cp ../lib/sizers/*.txt $(TARGETDIR)/lib/sizers; \\ + cp ../lib/editor/*.txt $(TARGETDIR)/lib/editor; \\ cp ../demo/*.txt $(TARGETDIR)/demo; \\ cp ../demo/bitmaps/* $(TARGETDIR)/demo/bitmaps; \\ cp ../demo/data/* $(TARGETDIR)/demo/data; \\