# @(#)Makefile	1.1 98/05/22
#
# Makefile for running the "footprint" test.
# This reports on startup costs for the current built JDK.
#
# Only runs on NT 4.0

BUILDDIR=  ..\..\..\..\build\win32
JAVA=      $(BUILDDIR)\bin\java
JAVAC=     $(BUILDDIR)\bin\javac

CLASSFILES= Noop.class Framer.class SwingFramer.class

.SUFFIXES: .java .class .jar .mf

all: $(CLASSFILES) message
    @footprint.exe $(JAVA)

message:
    @echo Note: startup costs naturally vary between different systems.
    @echo You can use footprint on a promoted build version of java to callibrate
    @echo your system.  For example:  "footprint J:\jdk\bin\java"

{}.java{}.class :
	$(JAVAC) -nowarn $<
