* contrib/hbsqlit2/Makefile
* contrib/hbsqlit3/Makefile
! Excluded from DOS builds.
* contrib/Makefile
- Commented following contribs from GNU-make default builds
until different platform/compiler issues and excessive
warnings are resolved:
hbsqlit2, hbsqlit3, hbw32ddr, hbwhat32, hbziparch
58 lines
681 B
Makefile
58 lines
681 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../../
|
|
|
|
LIBNAME=hbsqlit2
|
|
|
|
ifneq ($(HB_ARCHITECTURE),dos)
|
|
|
|
C_SOURCES =\
|
|
hbsqlit2.c \
|
|
attach.c \
|
|
auth.c \
|
|
btree.c \
|
|
btree_rb.c \
|
|
build.c \
|
|
copy.c \
|
|
date.c \
|
|
delete.c \
|
|
encode.c \
|
|
expr.c \
|
|
func.c \
|
|
hash.c \
|
|
insert.c \
|
|
main.c \
|
|
opcodes.c \
|
|
os.c \
|
|
pager.c \
|
|
parse.c \
|
|
pragma.c \
|
|
printf.c \
|
|
random.c \
|
|
select.c \
|
|
table.c \
|
|
tokenize.c \
|
|
trigger.c \
|
|
update.c \
|
|
util.c \
|
|
vacuum.c \
|
|
vdbe.c \
|
|
vdbeaux.c \
|
|
where.c \
|
|
|
|
PRG_HEADERS=\
|
|
hbsqlit2.ch
|
|
|
|
include $(TOP)$(ROOT)config/header.cf
|
|
INSTALL_RULE_HEADERS := $(INSTALL_RULE)
|
|
include $(TOP)$(ROOT)config/lib.cf
|
|
|
|
install::
|
|
$(INSTALL_RULE_HEADERS)
|
|
|
|
else
|
|
include $(TOP)$(ROOT)config/none.cf
|
|
endif
|