# Jamfile
# Copyright (c) 2001 MBruce, all rights reserved
# $Id: //guest/matt_bruce/sampleProject/java/com/mbruce/examples/Jamfile#1 $
SubDir TOP java com mbruce examples ;
# for this example, we have, quite simply, a single class with a main
# if you need a class path, classpaths are applied from sub directory
# down. We'll link to junit here, even though we don't need it, as
# an example
ClassPath
$(TOP)/3rdparty/java/lib/junit.jar
;
JavaPackage com.mbruce.examples :
Sample.java
AnotherSample.java
;