# # File: Makefile for the umich.cbe.distview.event java package # # June 1996 Terry E Weymouth from a makefile by Robert W. Hall. # Copyright (see COPYRIGHT file in this directory) by # The Regents of The University of Michigan, 1996 # # 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