30 lines
485 B
Plaintext
30 lines
485 B
Plaintext
|
!include ..\utils.mk
|
||
|
|
||
|
# component
|
||
|
MINORCOMP=common
|
||
|
|
||
|
# target
|
||
|
TARGETNAME=memdb
|
||
|
TARGETTYPE=LIBRARY
|
||
|
|
||
|
# compiler options
|
||
|
|
||
|
SOURCES=\
|
||
|
memdb.c \
|
||
|
memdbfile.c \
|
||
|
memdbutil.c \
|
||
|
bintree.c \
|
||
|
hash.c \
|
||
|
keystruct.c \
|
||
|
keydata.c \
|
||
|
keyfind.c \
|
||
|
database.c \
|
||
|
offsetbuf.c \
|
||
|
pastring.c \
|
||
|
|
||
|
|
||
|
# pre-compiled header
|
||
|
PRECOMPILED_OPTION=/Yupch.h /Fp..\pch\$(O)\pch.pch
|
||
|
PRECOMPILED_TARGET=..\pch\$(O)\pch.pch
|
||
|
|