--- projects/cms/source/util/uk/org/iscream/cms/util/Makefile 2000/11/30 02:31:21 1.2 +++ projects/cms/source/util/uk/org/iscream/cms/util/Makefile 2000/12/11 20:29:32 1.3.2.1 @@ -1,22 +1,22 @@ # Makefile for uk.ac.ukc.iscream.util -# $Id: Makefile,v 1.2 2000/11/30 02:31:21 tdb Exp $ +# $Id: Makefile,v 1.3.2.1 2000/12/11 20:29:32 tdb Exp $ # Defining Filenames CLASS = AlreadyInitialisedException.class NotInitialisedException.class\ ReferenceManager.class XMLPacket.class XMLPacketMaker.class\ - XMLStringParser.class + XMLStringParser.class FormatName.class IDL = ../../../../../idl/.madeidl IDLFILES = ../../../../../idl/uk -IDLMAKE = cd ../../../../.. && $(MAKE) idl +IDLMAKE = cd ../../../../.. && $(MAKE) buildidl +BUILD = ../../../../../build + # Defining "shortcuts" for building -all : util +all : $(IDL) $(CLASS) -util : $(IDL) $(CLASS) - clean : rm -f $(CLASS) @@ -27,7 +27,7 @@ update : # clever catchall to build any .class file from a .java file %.class : %.java - javac $< + javac -g:none -O -d $(BUILD) $< $(IDL) : ../../../../../idl/iscream.idl $(IDLMAKE)