#include "../../config.h"

COMMON_OBJS=hash.o list.o misc.o ycmalloc.o
COMMON_SRCS=hash.c list.c misc.c ycmalloc.c

PARSER_OBJS=vgrammar.o luthor.o expr.o delay.o
PARSER_SRCS=vgrammar.c luthor.c expr.c delay.c

OBJS=$(COMMON_OBJS) $(PARSER_OBJS)
SRCS=$(COMMON_SRCS) $(PARSER_SRCS)

LexFile(luthor)
YaccFile(vgrammar,-d)

LinkSourceFile(config.h,../..)
NormalLibraryTarget(common,$(COMMON_OBJS))
NormalLibraryTarget(vparser,$(PARSER_OBJS))
DependTarget()
