#
# File: Makefile for the ?? package
#
# arguments:
# JC - the java compiler
# JCFLAGS - options to the java compiler
#
JCFLAGS = -deprecation
JC = javac
# get the filenames for this subdirectory of the project
# the include file must define ALLCLASSFILES
#
INCFL = Makefile.filelist
include $(INCFL)
all:
$(MAKE) $(ALLCLASSFILES)
.SUFFIXES: .java .class
.java.class:
$(JC) $(JCFLAGS) $<
default:
$(MAKE) all
clear:
/bin/rm -f *.class
/bin/rm -f *~
/bin/rm -f #*#
clean:
$(MAKE) clear
syntax highlighted by Code2HTML, v. 0.9.1