Enable building of the runtime from the top level Makefile. Fixes #1305

pull/9/head
Rahul Soshte 2018-03-22 11:19:42 +00:00 committed by Dave Page
parent 60c44e8f79
commit 6d7f795260
2 changed files with 12 additions and 2 deletions

View File

@ -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/

View File

@ -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