Subversion Repositories svn.Prod repos

Compare Revisions

Ignore whitespace Rev 5 → Rev 6

/filefind/java/Makefile.inc
0,0 → 1,21
#
# gmake
# setp PROG variabele in calling file
#
 
.PHONY = clean run
 
$(PROG).class: $(PROG).java
@echo "INFO: Compiling $^ to $@"
javac $^
 
clean:
@echo "INFO: Cleaning $(PROG)"
rm -f $(PROG).class
 
run: $(PROG).class
@echo "INFO: Running $(PROG)"
java $(PROG)
 
all:
echo "$(PROG)"