Enable building of the runtime from the top level Makefile. Fixes #1305
parent
60c44e8f79
commit
6d7f795260
13
Makefile
13
Makefile
|
@ -14,7 +14,7 @@ SHELL = /bin/sh
|
|||
#########################################################################
|
||||
|
||||
# Include only platform-independent builds in all
|
||||
all: docs pip src
|
||||
all: docs pip src runtime-release
|
||||
|
||||
appbundle: docs
|
||||
./pkg/mac/build.sh
|
||||
|
@ -46,8 +46,17 @@ check-feature: install-node bundle
|
|||
check-js: install-node linter
|
||||
cd web && yarn run karma start --single-run
|
||||
|
||||
runtime-debug:
|
||||
cd runtime && qmake CONFIG+=debug && make
|
||||
|
||||
runtime:
|
||||
cd runtime && qmake CONFIG+=release && make
|
||||
|
||||
# Include all clean sub-targets in clean
|
||||
clean: clean-appbundle clean-docker clean-dist clean-docs clean-pip clean-src
|
||||
clean: clean-appbundle clean-docker clean-dist clean-docs clean-pip clean-src clean-runtime
|
||||
|
||||
clean-runtime:
|
||||
cd runtime && make clean
|
||||
|
||||
clean-appbundle:
|
||||
rm -rf mac-build/
|
||||
|
|
|
@ -10,6 +10,7 @@ This release contains a number of features and fixes reported since the release
|
|||
Features
|
||||
********
|
||||
|
||||
| `Feature #1305 <https://redmine.postgresql.org/issues/1305>`_ - Enable building of the runtime from the top level Makefile
|
||||
| `Feature #2895 <https://redmine.postgresql.org/issues/2895>`_ - Add keyboard navigation options for the main browser windows
|
||||
| `Feature #2896 <https://redmine.postgresql.org/issues/2896>`_ - Add keyboard navigation in Query tool module via Tab/Shift-Tab key
|
||||
| `Feature #2897 <https://redmine.postgresql.org/issues/2897>`_ - Support keyboard navigation in the debugger
|
||||
|
|
Loading…
Reference in New Issue