####
#### Java Makefile automatically generated by jmaker 1.13
#### Creation date: Wed Aug 30 07:38:49 2000
####

#### Java compiler settings
JAVAC       = javac
JAVAC_FLAGS = 

#### Build Rules
%.class: %.java
	$(JAVAC) $(JAVAC_FLAGS) $<

#### Global target
all:	\
	Ack \
	ConnectionPool \
	Download \
	DownloadInputStream \
	DownloadThread \
	HotListDataModel \
	HotListPanel \
	JavaScour \
	LibraryPanel \
	Login \
	MainWindow \
	NewUserLogin \
	ParseStatInfo \
	ResultTokenizer \
	Search \
	SearchDataModel \
	SearchPanel \
	SearchResult \
	TransferPanel \
	TransferPanelDataModel \
	UploadOutputStream \
	UserListModel

#### Single targets
Ack:	Ack.class
ConnectionPool:	ConnectionPool.class
Download:	Download.class
DownloadInputStream:	DownloadInputStream.class
DownloadThread:	DownloadThread.class
HotListDataModel:	HotListDataModel.class
HotListPanel:	HotListPanel.class
JavaScour:	JavaScour.class
LibraryPanel:	LibraryPanel.class
Login:	Login.class
MainWindow:	MainWindow.class
NewUserLogin:	NewUserLogin.class
ParseStatInfo:	ParseStatInfo.class
ResultTokenizer:	ResultTokenizer.class
Search:	Search.class
SearchDataModel:	SearchDataModel.class
SearchPanel:	SearchPanel.class
SearchResult:	SearchResult.class
TransferPanel:	TransferPanel.class
TransferPanelDataModel:	TransferPanelDataModel.class
UploadOutputStream:	UploadOutputStream.class
UserListModel:	UserListModel.class

#### Cleanup
clean:
	$(RM) *.class
	$(RM) *.java~

#### Rebuild
build:	clean all

#### Usage
help:
	@echo "Usage: make [all|<single target>|clean|build|help]"
	@echo "  all             - build all as needed (default)"
	@echo "  <single target> - build the given file as needed"
	@echo "  clean           - remove all .class files"
	@echo "  build           - build all inconditionnally"
	@echo "  help            - display this help"

