#-------------------------------------------------------------------------------# # NetRand Project # # Software Engineering - CS536 # # Authors: # # Spring '98 - Francis William Kasper # #-------------------------------------------------------------------------------# # Makefile for Server Sources # #-------------------------------------------------------------------------------# JAVA_SRCS = BitPool.java BitPoolException.java ByteServerException.java RandomByteServer.java ServerPrefs.java CLASS_FILES = BitPool.class BitPoolException.class ByteServerException.class RandomByteServer.class ServerPrefs.class COMPILE = javac CFLAGS = all: $(CLASS_FILES) ByteServerException.class: ByteServerException.java $(COMPILE) $(CFLAGS) ByteServerException.java BitPool.class: BitPool.java BitPoolException.class $(COMPILE) $(CFLAGS) BitPool.java BitPoolException.class: BitPoolException.java $(COMPILE) $(CFLAGS) BitPoolException.java RandomByteServer.class: RandomByteServer.java BitPool.class ServerPrefs.class $(COMPILE) $(CFLAGS) RandomByteServer.java ServerPrefs.class: ServerPrefs.java $(COMPILE) $(CFLAGS) ServerPrefs.java clean: rm -f $(CLASS_FILES) core *~ save: rm -rf backup/* cp *.java backup cp makefile backup doc: javadoc -private -notree -noindex -d ./docs $(JAVA_SRCS)