diff options
author | Cédric Bosdonnat <cedric.bosdonnat.ooo@free.fr> | 2011-09-29 15:10:49 +0200 |
---|---|---|
committer | Cédric Bosdonnat <cedric.bosdonnat.ooo@free.fr> | 2011-10-01 15:59:50 +0200 |
commit | 61db713ee57d6ed27936ab30b1946590b3cb3df4 (patch) | |
tree | 88d28ae47d6135be76133cbf61fa21b8f15ac524 /libcmis/prj | |
parent | cd5f71c90663714939cb51b2a8a4aa8b86e3fea2 (diff) |
CMIS: added libcmis module and created empty cmis UCP shell
Diffstat (limited to 'libcmis/prj')
-rw-r--r-- | libcmis/prj/build.lst | 2 | ||||
-rw-r--r-- | libcmis/prj/d.lst | 0 | ||||
-rw-r--r-- | libcmis/prj/makefile.mk | 40 |
3 files changed, 42 insertions, 0 deletions
diff --git a/libcmis/prj/build.lst b/libcmis/prj/build.lst new file mode 100644 index 000000000000..65dd566d0551 --- /dev/null +++ b/libcmis/prj/build.lst @@ -0,0 +1,2 @@ +lc libcmis : soltools NULL +lc libcmis/prj nmake - all lc_prj NULL diff --git a/libcmis/prj/d.lst b/libcmis/prj/d.lst new file mode 100644 index 000000000000..e69de29bb2d1 --- /dev/null +++ b/libcmis/prj/d.lst diff --git a/libcmis/prj/makefile.mk b/libcmis/prj/makefile.mk new file mode 100644 index 000000000000..2483afdff7a5 --- /dev/null +++ b/libcmis/prj/makefile.mk @@ -0,0 +1,40 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# Version: MPL 1.1 / GPLv3+ / LGPLv3+ +# +# The contents of this file are subject to the Mozilla Public License Version +# 1.1 (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.mozilla.org/MPL/ +# +# Software distributed under the License is distributed on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +# for the specific language governing rights and limitations under the +# License. +# +# Major Contributor(s): +# Copyright (C) 2011 Norbert Thiebaud <nthiebaud@gmail.com> +# +# All Rights Reserved. +# +# For minor contributions see the git repository. +# +# Alternatively, the contents of this file may be used under the terms of +# either the GNU General Public License Version 3 or later (the "GPLv3+"), or +# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"), +# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable +# instead of those above. + +PRJ=.. +TARGET=prj + +.INCLUDE : settings.mk + +.IF "$(VERBOSE)"!="" +VERBOSEFLAG := +.ELSE +VERBOSEFLAG := -s +.ENDIF + +all: + cd $(PRJ) && $(GNUMAKE) $(VERBOSEFLAG) -r -j$(GMAKE_MODULE_PARALLELISM) $(gb_MAKETARGET) && $(GNUMAKE) $(VERBOSEFLAG) -r deliverlog |