You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by db...@apache.org on 2016/05/02 18:12:35 UTC

[56/60] incubator-trafodion git commit: Included LICENSE and NOTICE in T4 zip file

Included LICENSE and NOTICE in T4 zip file


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/commit/780f976a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/tree/780f976a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/diff/780f976a

Branch: refs/heads/master
Commit: 780f976a6b3412f9f0bc8bb946fe25adf400dde3
Parents: b508299
Author: Anuradha Hegde <an...@esgyn.com>
Authored: Fri Apr 29 16:04:34 2016 +0000
Committer: Anuradha Hegde <an...@esgyn.com>
Committed: Fri Apr 29 16:04:34 2016 +0000

----------------------------------------------------------------------
 core/conn/jdbcT4/.gitignore |  4 +++-
 core/conn/jdbcT4/Makefile   | 12 ++++++++++--
 2 files changed, 13 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/780f976a/core/conn/jdbcT4/.gitignore
----------------------------------------------------------------------
diff --git a/core/conn/jdbcT4/.gitignore b/core/conn/jdbcT4/.gitignore
index 6d90c7e..90bf5f8 100644
--- a/core/conn/jdbcT4/.gitignore
+++ b/core/conn/jdbcT4/.gitignore
@@ -1,2 +1,4 @@
 /target/
-build_jdbct4.log
+*.log
+/LICENSE
+/NOTICE

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/780f976a/core/conn/jdbcT4/Makefile
----------------------------------------------------------------------
diff --git a/core/conn/jdbcT4/Makefile b/core/conn/jdbcT4/Makefile
index a53e50c..828416c 100644
--- a/core/conn/jdbcT4/Makefile
+++ b/core/conn/jdbcT4/Makefile
@@ -25,14 +25,22 @@ include ../../macros.gmk #top level
 
 all: build_all
 
-build_all: 
+build_all: LICENSE NOTICE 
 	echo "$(MAVEN) package -DskipTests"
 	set -o pipefail && $(MAVEN) package -DskipTests | tee build_jdbct4.log | grep --line-buffered -E -e '^\[[^WId]' -e '^\[INFO\] B[Uu][Ii][Ll][Dd]' -e 'to compile'
 	cp target/jdbcT4-${TRAFODION_VER}.jar ${MY_SQROOT}/export/lib
 	mkdir -p ../clients
 	mv target/jdbcT4-${TRAFODION_VER}.zip ../clients
 
-
 clean:
 	-$(MAVEN) clean | grep ERROR
 	$(RM) build_jdbct4.log ${MY_SQROOT}/export/lib/jdbcT4*.jar
+
+LICENSE: ../../../licenses/LICENSE-clients
+	cp -f $? $@
+
+../../../licenses/LICENSE-clients:
+	cd $(@D) && $(MAKE) $(@F)
+
+NOTICE: ../../../NOTICE
+	cp -f $? $@