
Tested-By: Paulo Vital <pvital@linux.vnet.ibm.com> Reviewed-By: Paulo Vital <pvital@linux.vnet.ibm.com> On Wed, 2015-09-09 at 14:06 -0300, Aline Manera wrote:
Signed-off-by: Aline Manera <alinefm@linux.vnet.ibm.com> --- configure.ac | 1 + ui/Makefile.am | 2 +- ui/base64/Makefile.am | 19 +++++++++++++++++++ 3 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 ui/base64/Makefile.am
diff --git a/configure.ac b/configure.ac index 0261b5f..9eee3c7 100644 --- a/configure.ac +++ b/configure.ac @@ -105,6 +105,7 @@ AC_CONFIG_FILES([ plugins/sample/ui/js/Makefile plugins/sample/ui/pages/Makefile ui/Makefile + ui/base64/Makefile ui/css/Makefile ui/images/Makefile ui/images/theme-default/Makefile diff --git a/ui/Makefile.am b/ui/Makefile.am index d541355..2209ada 100644 --- a/ui/Makefile.am +++ b/ui/Makefile.am @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License.
-SUBDIRS = css images js libs pages spice-html5 +SUBDIRS = base64 css images js libs pages spice-html5
uidir = $(datadir)/kimchi/ui
diff --git a/ui/base64/Makefile.am b/ui/base64/Makefile.am new file mode 100644 index 0000000..6ce3ca8 --- /dev/null +++ b/ui/base64/Makefile.am @@ -0,0 +1,19 @@ +# +# Kimchi +# +# Copyright IBM, Corp. 2015 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +jquerybase64dir = $(datadir)/kimchi/ui/base64 +dist_jquerybase64_DATA = $(wildcard *.js) $(NULL)