# Library support
#
# Copyright (c) 1996, 1997
#	Transvirtual Technologies, Inc.  All rights reserved.
#
# See the file "license.terms" for information on usage and redistribution 
# of this file. 

prefix=		@prefix@
srcdir=		@srcdir@
incdir=		@includedir@/kaffe
INSTALL=	@INSTALL@
INSTALL_DATA=	@INSTALL_DATA@
MKDIR=		@MKDIR@

SHELL=		/bin/sh

BUILT_INCLUDEFILES= \
		jtypes.h

INCLUDEFILES= \
		native.h \
		jmalloc.h \
		jsyscall.h \
		jni.h \
		Arrays.h \
		java_lang_Object.h \
		java_lang_String.h \
		java_lang_Throwable.h \
		java_lang_Thread.h \
		java_lang_ThreadGroup.h \

all: $(BUILT_INCLUDEFILES)

clean:

distclean:
		rm -f Makefile $(BUILT_INCLUDEFILES) .depend

install:
		test -d $(incdir) || $(MKDIR) $(incdir)
		for i in $(BUILT_INCLUDEFILES) ;\
		do \
			$(INSTALL_DATA) $$i $(incdir)/$$i ;\
		done
		for i in $(INCLUDEFILES) ;\
		do \
			$(INSTALL_DATA) $(srcdir)/$$i $(incdir)/$$i ;\
		done

depend:

