Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Christophe Rhodes
is52038b-labs
Commits
a7ea34c8
Commit
a7ea34c8
authored
Oct 02, 2018
by
Christophe Rhodes
Browse files
updates to generic infrastructure
parent
899229bf
Changes
1
Hide whitespace changes
Inline
Side-by-side
java.mk
View file @
a7ea34c8
...
...
@@ -9,10 +9,22 @@ ifeq ($(OS),Windows_NT)
JAVAC
=
"
$(JDIR)
"
/bin/javac
JAVA
=
"
$(JDIR)
"
/bin/java
else
## remove the # symbols from the two lines below, and write in
## the path to javac and java on your system, such as
# JAVAC = /c/Program\ Files/Java/jdk-18.3/bin/javac
# JAVA = /c/Program\ Files/Java/jdk-18.3/bin/java
ifneq
($(wildcard /c/Program\ Files/Java/jdk-10*),)
JDIR
=
$(
wordlist
1,2,
$(
wildcard
/c/Program
\
Files/Java/jdk-10
*
))
JAVAC
=
"
$(JDIR)
"
/bin/javac
JAVA
=
"
$(JDIR)
"
/bin/java
else
ifneq
($(wildcard /c/Program\ Files/Java/jdk-11*),)
JDIR
=
$(
wordlist
1,2,
$(
wildcard
/c/Program
\
Files/Java/jdk-11
*
))
JAVAC
=
"
$(JDIR)
"
/bin/javac
JAVA
=
"
$(JDIR)
"
/bin/java
else
## remove the # symbols from the two lines below, and write in
## the path to javac and java on your system, such as
# JAVAC = /c/Program\ Files/Java/jdk-18.3/bin/javac
# JAVA = /c/Program\ Files/Java/jdk-18.3/bin/java
endif
endif
endif
endif
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment