annotate Makefile @ 970:f90d811e97eb default tip

Adjust getTableTypes() test for new table type: LOCAL TEMPORARY VIEW, added in 11.53.4 (Mar2025-SP1)
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Thu, 03 Apr 2025 15:01:33 +0200 (5 days ago)
parents 3b75dfdc8314
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
829
a03de7b24ae8 No need to create MonetVersion.java before running ant.
Sjoerd Mullender <sjoerd@acm.org>
parents: 786
diff changeset
1 all: src/main/java/org/monetdb/jdbc/MonetVersion.java.in
1
aded8207ba33 Created simple makefile for building jars using ant.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff changeset
2 ant -f build.xml distjdbc distmerocontrol
aded8207ba33 Created simple makefile for building jars using ant.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff changeset
3 cd tests; ant -f build.xml jar_jdbctests
aded8207ba33 Created simple makefile for building jars using ant.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff changeset
4
786
f7df78989ac5 Generate MonetVersion.java rather than MonetDriver.java
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents: 785
diff changeset
5 jre17jars: src/main/java/org/monetdb/jdbc/MonetVersion.java
747
342fc48c95cd Extend makefile with targets: jre17jars and testsjar
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 662
diff changeset
6 rm -rf build
950
52508322a849 Drop redundant build_jreNN.xml files
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents: 899
diff changeset
7 ant -f build.xml -Djvm.version=17 distjdbc
747
342fc48c95cd Extend makefile with targets: jre17jars and testsjar
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 662
diff changeset
8 rm -rf build
342fc48c95cd Extend makefile with targets: jre17jars and testsjar
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 662
diff changeset
9
899
cccaeb65a5d6 Extend Makefile with target: jre21jars
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 880
diff changeset
10 jre21jars: src/main/java/org/monetdb/jdbc/MonetVersion.java
cccaeb65a5d6 Extend Makefile with target: jre21jars
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 880
diff changeset
11 rm -rf build
950
52508322a849 Drop redundant build_jreNN.xml files
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents: 899
diff changeset
12 ant -f build.xml -Djvm.version=21 distjdbc
899
cccaeb65a5d6 Extend Makefile with target: jre21jars
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 880
diff changeset
13 rm -rf build
cccaeb65a5d6 Extend Makefile with target: jre21jars
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 880
diff changeset
14
880
74b907f25564 Allow to run 'make test' in the toplevel directory
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents: 829
diff changeset
15 test: all
956
3b75dfdc8314 remove space
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 950
diff changeset
16 cd tests; ant -f build.xml test
880
74b907f25564 Allow to run 'make test' in the toplevel directory
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents: 829
diff changeset
17
747
342fc48c95cd Extend makefile with targets: jre17jars and testsjar
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 662
diff changeset
18 testsjar:
342fc48c95cd Extend makefile with targets: jre17jars and testsjar
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 662
diff changeset
19 cd tests; ant -f build.xml jar_jdbctests
342fc48c95cd Extend makefile with targets: jre17jars and testsjar
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 662
diff changeset
20
193
982534c83436 Updating build.xml and tests/build.xml
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 3
diff changeset
21 doc:
982534c83436 Updating build.xml and tests/build.xml
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 3
diff changeset
22 ant -f build.xml doc
982534c83436 Updating build.xml and tests/build.xml
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 3
diff changeset
23
1
aded8207ba33 Created simple makefile for building jars using ant.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff changeset
24 clean:
786
f7df78989ac5 Generate MonetVersion.java rather than MonetDriver.java
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents: 785
diff changeset
25 rm -f src/main/java/org/monetdb/jdbc/MonetVersion.java
193
982534c83436 Updating build.xml and tests/build.xml
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 3
diff changeset
26 rm -rf build tests/build jars doc
396
c763cc259132 Add tasks cleandoc and cleantests for convenience
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 391
diff changeset
27
c763cc259132 Add tasks cleandoc and cleantests for convenience
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 391
diff changeset
28 cleandoc:
c763cc259132 Add tasks cleandoc and cleantests for convenience
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 391
diff changeset
29 rm -rf doc
c763cc259132 Add tasks cleandoc and cleantests for convenience
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 391
diff changeset
30
c763cc259132 Add tasks cleandoc and cleantests for convenience
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 391
diff changeset
31 cleantests:
c763cc259132 Add tasks cleandoc and cleantests for convenience
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 391
diff changeset
32 rm -rf tests/build
c763cc259132 Add tasks cleandoc and cleantests for convenience
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 391
diff changeset
33 rm -f jars/jdbctests.jar
c763cc259132 Add tasks cleandoc and cleantests for convenience
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents: 391
diff changeset
34