I have the following makefile after running it once I make some changes to the makefile and now when I run it I get a \"make: Nothing to be done for `default\'.\" How can I
The problem is that this:
.java.class: $(JC) $(JFLAGS) $*.java
doesn't do what you think it does. Perhaps you meant something like this?
%.class: %.java $(JC) $(JFLAGS) $^