#include BOOTSTRAP_INCLUDE

OBJECT_TYPE = library

TOOLBOX_NAME = bootstrap

OBJECT_NAME = kexpr

HEADERS = \
	internals.h \
	y.tab.h

CSRCS = \
	build.c \
	constant.c \
	eval.c \
	function.c \
	print.c \
	routines.c \
	utilities.c \
	variable.c
YSRCS = \
	kexpr_yacc.y
LSRCS = \
	kexpr_lex.l
FSRCS =
C++SRCS =

COBJS = \
	build.o \
	constant.o \
	eval.o \
	function.o \
	print.o \
	routines.o \
	utilities.o \
	variable.o
LOBJS = \
	kexpr_lex.o
YOBJS = \
	kexpr_yacc.o
FOBJS =
C++OBJS =

BINARY_NAME = kexpr

#include <Library.template>

/* the following field are intentionally left commented.  Use the flags */
/* if you wish to override the defaults assigned in the system          */
/* files.				     	 		        */

/* STD_INCLUDES = */
/* LIBCDEBUGFLAGS = */
