diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f48fda3 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +## VARIABLES +JVM = java +JC = javac +CLASSPATH = -cp ".:mariadb-client.jar" + +## REGLE DE BASE +compile : + ${JC} JTreeExample.java + +run : compile + ${JVM} JTreeExample ${CLASSPATH} \ No newline at end of file