Mercurial > hg > monetdb-java
annotate Makefile @ 829:a03de7b24ae8
No need to create MonetVersion.java before running ant.
author | Sjoerd Mullender <sjoerd@acm.org> |
---|---|
date | Thu, 21 Dec 2023 14:26:33 +0100 (16 months ago) |
parents | f7df78989ac5 |
children | 74b907f25564 |
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 |
342fc48c95cd
Extend makefile with targets: jre17jars and testsjar
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents:
662
diff
changeset
|
7 ant -f build_jre17.xml distjdbc |
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 |
342fc48c95cd
Extend makefile with targets: jre17jars and testsjar
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents:
662
diff
changeset
|
10 testsjar: |
342fc48c95cd
Extend makefile with targets: jre17jars and testsjar
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents:
662
diff
changeset
|
11 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
|
12 |
193
982534c83436
Updating build.xml and tests/build.xml
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents:
3
diff
changeset
|
13 doc: |
982534c83436
Updating build.xml and tests/build.xml
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents:
3
diff
changeset
|
14 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
|
15 |
1
aded8207ba33
Created simple makefile for building jars using ant.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff
changeset
|
16 clean: |
786
f7df78989ac5
Generate MonetVersion.java rather than MonetDriver.java
Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
parents:
785
diff
changeset
|
17 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
|
18 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
|
19 |
c763cc259132
Add tasks cleandoc and cleantests for convenience
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents:
391
diff
changeset
|
20 cleandoc: |
c763cc259132
Add tasks cleandoc and cleantests for convenience
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents:
391
diff
changeset
|
21 rm -rf doc |
c763cc259132
Add tasks cleandoc and cleantests for convenience
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents:
391
diff
changeset
|
22 |
c763cc259132
Add tasks cleandoc and cleantests for convenience
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents:
391
diff
changeset
|
23 cleantests: |
c763cc259132
Add tasks cleandoc and cleantests for convenience
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents:
391
diff
changeset
|
24 rm -rf tests/build |
c763cc259132
Add tasks cleandoc and cleantests for convenience
Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
parents:
391
diff
changeset
|
25 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
|
26 |