diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-05-09 10:05:14 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-06-18 17:02:12 +0200 |
commit | 3ead72d365c722f2234ace08fdb3d313f709ace5 (patch) | |
tree | 0b36acd5347f22a53e5334ebf0a6e1792a32c7e9 /uitest/Makefile | |
parent | 7a8b2e211cf1e0c8facc1458b92bddf52758e17e (diff) |
uitest: build system part for new uitests
We now can call the uitests with make uitest.uickeck
Change-Id: I20c73efd93c7987f3b841cd0e3e7842ee7a5dab9
Diffstat (limited to 'uitest/Makefile')
-rw-r--r-- | uitest/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/uitest/Makefile b/uitest/Makefile new file mode 100644 index 000000000000..0997e628485b --- /dev/null +++ b/uitest/Makefile @@ -0,0 +1,14 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +module_directory:=$(dir $(realpath $(firstword $(MAKEFILE_LIST)))) + +include $(module_directory)/../solenv/gbuild/partial_build.mk + +# vim: set noet sw=4 ts=4: |