new semester here we go

This commit is contained in:
Medium Fries
2019-03-15 01:25:45 -07:00
parent c319e77f12
commit fa12687849
80 changed files with 7781 additions and 4 deletions

1
338/scripts/make.sh Normal file
View File

@@ -0,0 +1 @@
javac --module-path /home/shockrah/Downloads/javafx-sdk-11.0.2/lib $1 --add-modules javafx.controls

14
338/scripts/makefile Normal file
View File

@@ -0,0 +1,14 @@
cc=javac
fxlib=--module-path /home/shockrah/Downloads/javafx-sdk-11.0.2/lib
ctrl=--add-modules javafx.controls
env=java
cfile="adsf"
default: %.java
# takes a java file as entry to build
$(cc) $(fxlib) $< $(ctr)
# ouchie
run:
$(env) $(fxlib) $(ctrl) $(cfile)

2
338/scripts/run.sh Normal file
View File

@@ -0,0 +1,2 @@
[ -z $1 ] && echo "no target" && exit 1
java --module-path /home/shockrah/Downloads/javafx-sdk-11.0.2/lib --add-modules javafx.controls $1