Skip to content

Commit

Permalink
Enable building of the runtime from the top level Makefile. Fixes #1305
Browse files Browse the repository at this point in the history
  • Loading branch information
Rahul Soshte authored and dpage committed Mar 22, 2018
1 parent 60c44e8 commit 6d7f795
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
13 changes: 11 additions & 2 deletions Makefile
Expand Up @@ -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
Expand Down Expand Up @@ -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/
Expand Down
1 change: 1 addition & 0 deletions docs/en_US/release_notes_3_0.rst
Expand Up @@ -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
Expand Down

0 comments on commit 6d7f795

Please sign in to comment.