Skip to content

Commit 7695c44

Browse files
committed
Makefile changes for 1.0.1
1 parent 597300c commit 7695c44

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export JNIDIR := $(TARGETDIR)/jni
4545
export CLASSDIR := $(TARGETDIR)/classes
4646
export PLJAVA_MAJOR_VER := 1
4747
export PLJAVA_MINOR_VER := 0
48-
export PLJAVA_PATCH_VER := 0
48+
export PLJAVA_PATCH_VER := 1
4949
export PLJAVA_VERSION := $(PLJAVA_MAJOR_VER).$(PLJAVA_MINOR_VER).$(PLJAVA_PATCH_VER)
5050
export TAR := /bin/tar
5151

packaging/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ release:
2525
-o -name '*.a' \
2626
-o -name '*.dll' \
2727
\) -a -not -path ./$(RELNAME)'/*' -exec cp {} $(RELNAME) \;
28+
@cp ../src/sql/*.sql $(RELNAME)
2829
@$(TAR) cf $(RELNAME)/docs.tar docs
2930
(cd $(RELNAME); $(TAR) zcf ../distrib/$(RELNAME).tar.gz .)
3031

src/java/Makefile.global

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ifdef USE_GCJ
1414
GCJ := gcj
1515
JAVAC := $(GCJ) -C
1616
else
17-
JAVAC := javac -source 1.4
17+
JAVAC := javac -source 1.4 -target 1.4
1818
endif
1919

2020
JARFILE := $(TARGETDIR)/$(NAME).jar
@@ -39,6 +39,6 @@ $(TARGETDIR)/docs/$(NAME)/.timestamp: $(SRCS)
3939
-breakiterator \
4040
-doctitle $(JAVADOCTITLE) \
4141
-protected \
42-
-bottom 'Copyright (c) 2003, 2004 TADA AB - Taby Sweden. \
42+
-bottom 'Copyright (c) 2003, 2004, 2005 TADA AB - Taby Sweden. \
4343
Distributed under the terms shown in <a href="../COPYRIGHT.txt">COPYRIGHT</a>'
4444
@touch $(TARGETDIR)/docs/$(NAME)/.timestamp

0 commit comments

Comments
 (0)