Skip to content

Instantly share code, notes, and snippets.

@senmu
Created October 11, 2011 07:06
Show Gist options
  • Select an option

  • Save senmu/1277486 to your computer and use it in GitHub Desktop.

Select an option

Save senmu/1277486 to your computer and use it in GitHub Desktop.
A makefile for simple java projects
JC = javac
.SUFFIXES: .java .class
.java.class:
$(JC) *.java
default: .java.class
clean:
$(RM) *.class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment