-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile
More file actions
39 lines (29 loc) · 849 Bytes
/
Makefile
File metadata and controls
39 lines (29 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
all: src/main/java/org/monetdb/jdbc/MonetVersion.java.in
ant -f build.xml distjdbc distmerocontrol
cd tests; ant -f build.xml jar_jdbctests
jre17jars: src/main/java/org/monetdb/jdbc/MonetVersion.java
rm -rf build
ant -f build.xml -Djvm.version=17 distjdbc
rm -rf build
jre21jars: src/main/java/org/monetdb/jdbc/MonetVersion.java
rm -rf build
ant -f build.xml -Djvm.version=21 distjdbc
rm -rf build
jre25jars: src/main/java/org/monetdb/jdbc/MonetVersion.java
rm -rf build
ant -f build.xml -Djvm.version=25 distjdbc
rm -rf build
test: all
cd tests; ant -f build.xml test
testsjar:
cd tests; ant -f build.xml jar_jdbctests
doc:
ant -f build.xml doc
clean:
rm -f src/main/java/org/monetdb/jdbc/MonetVersion.java
rm -rf build tests/build jars doc
cleandoc:
rm -rf doc
cleantests:
rm -rf tests/build
rm -f jars/jdbctests.jar