# Imakefile to make Virtual database access library
#

# for mSQL
SRCS = DfltsIntface.c DfltsPaths.c HashLList.c SimpleLList.c Error.c \
         StringList.c Memory.c AppInit.c AppArgs.c StrUtils.c TagValue.c \
         DbgTrace.c StrCase.c msqlacc.c 

# for other databases replace msqlacc.c with other unit

TESTSRCS = test.c

LIBS = -lVdb -lmsql
DEFS = 

VBASE = $(PROJECTROOT)
DBASELIB = /usr/local/Minerva/lib

LIST    = Vdb test

# use a sensible compiler
CC = gcc

VPublicLibrary(Vdb,SRCS)
VProgramTarget(test,TESTSRCS,LIBS,DEFS)

VAllTarget(LIST)
