#!/bin/sh

# gen_rmi_class_list

# This script searches the current directory for java files
# and looks for a tag to signify the file is to be further
# processed by rmic.  The output is passed to standard out.

# This file gets called via build.xml when ant is ran.

find * -name \*.java | \
	xargs grep -l //rmimakehelper /dev/null | \
	sed -e 's:.java$:.class:'

