I'm not a Java user and know next to nothing about it. Today was my first time ever running a line of Java directly. If you've ever used Java before, this is not going to blow your mind.
As part of my Ruby learning journey I'm working on translating some Java (specifically from the excellent Crafting Interpeters book), and while my Ruby implementation is the focus I want to be able to follow along locally with both languages. However, I didn't want to spend a ton of time learning about a whole ecosystem that I'm not targeting. Previously, I'd always assumed Java required bulky build tools and IDEs and lots of peripheral knowledge to hook everything up. I thought I needed use a full-fledged tool like Eclipse or IDEA to set up all the details for you and had no sense of how the build process worked.
As it turns out, while you can lean on tooling, you can of course also just pop some Java code in a text file and build and run it by hand! There is a javac
CLI tool. Either use it directly or use GNU make to invoke it automatically.
Here's what I'm starting with:
JAVAC=javac
sources = $(wildcard *.java)
classes = $(sources:.java=.class)
all: program
program: $(classes)
clean:
rm -f *.class
%.class: %.java
$(JAVAC) $<
jar: $(classes)
jar cvf program.jar $(classes)
.PHONY: all program clean jar
edit: added phony targets! Thanks Michael.
With this, you can invoke make
to compile a Thing.class
bytecode file for each Thing.java
source file present. Then you get to run java Thing
to execute it! You can also use make jar
to roll everything together into a jar file.
All in all, not so different from anything else I've ever used!
This is, as promised, "quick and dirty". You can go forth from here and further customize your makefile, but if you want to do more than just quick experimentation, I do still think the IDE/Java-specific build tool route (Maven, Gradle, etc) is gonna be the way to go. For non-Java-users who just want to plunk about without wasting too much time on peripherals, though, this'll do you just fine.
Photo by Jakub Dziubak on Unsplash
Top comments (9)
I love this! I went through basically the exact same process for the exact same reasons π the only difference is that I used some bash scripts instead of a makefile.
Itβs hard to describe exactly how much I love that Crafting Interpreters book. So. Good. His teaching style lines up exactly with how I learn things.
I'm just kicking myself for sitting on it for so long! Just the right pace, tone, and level of detail.
Interesting! I never thought to use a makefile for Java!
(And +1 for crafting interpreters - it's on my short list of things to do.)
It'd been on my "to-do" for a long time - could not be happier I finally cracked it open.
Yeah, I'm almost ready to start, just wanted to finish writing a toy sqlite first - cstack.github.io/db_tutorial/
There are a lot of overlaps (parsing etc.), I think.
welp, there's another for the stack... sounds fun!
I have integrated Vim and Makefile. When I invoke make from Vim, the .java is compiled and unit tested.
This is an interesting way to combine learning Makefiles with learning Java, should that ever come up in education or elsewhere.
Yikes, true enough! Thanks