зеркало из https://github.com/mozilla/pjs.git
39 строки
552 B
Makefile
39 строки
552 B
Makefile
#! gmake
|
|
|
|
DEPTH = ../..
|
|
topsrcdir = @top_srcdir@
|
|
VPATH = @srcdir@
|
|
srcdir = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MODULE = dbm
|
|
|
|
CSRCS = db.c \
|
|
h_bigkey.c \
|
|
h_func.c \
|
|
h_log2.c \
|
|
h_page.c \
|
|
hash.c \
|
|
hash_buf.c \
|
|
hsearch.c \
|
|
memmove.c \
|
|
mktemp.c \
|
|
ndbm.c \
|
|
snprintf.c \
|
|
strerror.c \
|
|
nsres.c \
|
|
$(NULL)
|
|
|
|
LIBRARY_NAME = mozdbm
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
DEFINES += -DMEMMOVE -D__DBINTERFACE_PRIVATE $(SECURITY_FLAG)
|
|
|
|
INCLUDES += -I$(srcdir)/../include
|
|
|
|
ifeq ($(OS_ARCH),AIX)
|
|
OS_LIBS += -lc_r
|
|
endif
|