3 Star 0 Fork 0

mirrors_jcoleman/pgbouncer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 3.87 KB
一键复制 编辑 原始数据 按行查看 历史
include config.mak
bin_PROGRAMS = pgbouncer
pgbouncer_SOURCES = \
src/admin.c \
src/client.c \
src/dnslookup.c \
src/hba.c \
src/janitor.c \
src/loader.c \
src/main.c \
src/objects.c \
src/pam.c \
src/pktbuf.c \
src/pooler.c \
src/proto.c \
src/sbuf.c \
src/scram.c \
src/server.c \
src/stats.c \
src/system.c \
src/takeover.c \
src/util.c \
src/varcache.c \
src/common/base64.c \
src/common/saslprep.c \
src/common/scram-common.c \
src/common/unicode_norm.c \
src/common/wchar.c \
include/admin.h \
include/bouncer.h \
include/client.h \
include/dnslookup.h \
include/hba.h \
include/iobuf.h \
include/janitor.h \
include/loader.h \
include/objects.h \
include/pam.h \
include/pktbuf.h \
include/pooler.h \
include/proto.h \
include/sbuf.h \
include/scram.h \
include/server.h \
include/stats.h \
include/system.h \
include/takeover.h \
include/util.h \
include/varcache.h \
include/common/base64.h \
include/common/pg_wchar.h \
include/common/postgres_compat.h \
include/common/saslprep.h \
include/common/scram-common.h \
include/common/unicode_combining_table.h \
include/common/unicode_norm.h \
include/common/unicode_norm_table.h
pgbouncer_CPPFLAGS = -Iinclude $(CARES_CFLAGS) $(LIBEVENT_CFLAGS) $(TLS_CPPFLAGS)
# include libusual sources directly
AM_FEATURES = libusual
pgbouncer_EMBED_LIBUSUAL = 1
# docs to install as-is
dist_doc_DATA = README.md NEWS.md etc/pgbouncer.ini etc/userlist.txt
DISTCLEANFILES = config.mak config.status lib/usual/config.h config.log
DIST_SUBDIRS = doc test
dist_man_MANS = doc/pgbouncer.1 doc/pgbouncer.5
# files in tgz
EXTRA_DIST = AUTHORS COPYRIGHT Makefile config.mak.in config.sub config.guess \
install-sh autogen.sh configure configure.ac \
etc/mkauth.py etc/optscan.sh etc/example.debian.init.sh \
win32/Makefile \
$(LIBUSUAL_DIST)
# libusual files (FIXME: list should be provided by libusual...)
LIBUSUAL_DIST = $(filter-out %/config.h, $(sort $(wildcard \
lib/usual/*.[chg] \
lib/usual/*/*.[ch] \
lib/m4/*.m4 \
lib/usual/config.h.in \
lib/mk/*.mk \
lib/mk/antimake.mk lib/mk/antimake.txt \
lib/mk/install-sh lib/mk/std-autogen.sh \
lib/README lib/COPYRIGHT \
lib/find_modules.sh )))
pgbouncer_LDFLAGS := $(TLS_LDFLAGS)
pgbouncer_LDADD := $(CARES_LIBS) $(LIBEVENT_LIBS) $(TLS_LIBS) $(LIBS)
LIBS :=
#
# win32
#
EXTRA_pgbouncer_SOURCES = win32/win32support.c win32/win32support.h win32/win32ver.rc
EXTRA_PROGRAMS = pgbevent
ifeq ($(PORTNAME),win32)
pgbouncer_CPPFLAGS += -Iwin32
pgbouncer_SOURCES += $(EXTRA_pgbouncer_SOURCES)
bin_PROGRAMS += pgbevent
endif
pgbevent_SOURCES = win32/pgbevent.c win32/eventmsg.rc \
win32/eventmsg.mc win32/MSG00001.bin
pgbevent_EXT = .dll
pgbevent_LINK = $(CC) -shared -Wl,--export-all-symbols -Wl,--add-stdcall-alias -o $@ $^
# .rc->.o
AM_LANGUAGES = RC
AM_LANG_RC_SRCEXTS = .rc
AM_LANG_RC_COMPILE = $(WINDRES) $< -o $@ --include-dir=$(srcdir)/win32 --include-dir=lib
AM_LANG_RC_LINK = false
#
# now load antimake
#
USUAL_DIR = lib
abs_top_srcdir ?= $(CURDIR)
include $(abs_top_srcdir)/lib/mk/antimake.mk
config.mak:
@echo "Please run ./configure"
@exit 1
check: all
etc/optscan.sh
$(MAKE) -C test check
w32zip = $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-windows-$(host_cpu).zip
zip: $(w32zip)
$(w32zip): pgbouncer.exe pgbevent.dll etc/pgbouncer.ini etc/userlist.txt README.md COPYRIGHT
rm -rf $(basename $@)
mkdir $(basename $@)
cp $^ $(basename $@)
$(STRIP) $(addprefix $(basename $@)/,$(filter %.exe %.dll,$(^F)))
zip -MM $@ $(addprefix $(basename $@)/,$(filter %.exe %.dll,$(^F)))
# NB: zip -l for text files for end-of-line conversion
zip -MM -l $@ $(addprefix $(basename $@)/,$(filter-out %.exe %.dll,$(^F)))
.PHONY: tags
tags:
ctags src/*.c include/*.h lib/usual/*.[ch] lib/usual/*/*.[ch]
htmls:
for f in *.md doc/*.md; do \
mkdir -p html && $(PANDOC) $$f -o html/`basename $$f`.html; \
done
doc/pgbouncer.1 doc/pgbouncer.5:
$(MAKE) -C doc
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_jcoleman/pgbouncer.git
git@gitee.com:mirrors_jcoleman/pgbouncer.git
mirrors_jcoleman
pgbouncer
pgbouncer
master

搜索帮助