new semester here we go
This commit is contained in:
21
338/roman/makefile
Normal file
21
338/roman/makefile
Normal file
@@ -0,0 +1,21 @@
|
||||
cc=~/Downloads/jdk-11.0.2/bin/javac
|
||||
fxlib=--module-path /home/shockrah/Downloads/javafx-sdk-11.0.2/lib
|
||||
ctrl=--add-modules javafx.controls
|
||||
|
||||
env=~/Downloads/jdk-11.0.2/bin/java
|
||||
jfile="Roman.java"
|
||||
cfile="Roman"
|
||||
|
||||
default:
|
||||
# takes a java file as entry to build
|
||||
#$(cc) $(fxlib) $< $(ctr)
|
||||
$(cc) $(jfile)
|
||||
|
||||
|
||||
# ouchie
|
||||
run:
|
||||
#$(env) $(fxlib) $(ctrl) $(cfile)
|
||||
$(env) $(cfile)
|
||||
|
||||
clean:
|
||||
rm -f *class
|
||||
Reference in New Issue
Block a user