diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 12:06:34 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 12:06:34 +0000 |
commit | 5e61585d76ae77fd5e9e96ebabb57afa4d74880d (patch) | |
tree | 2b467823aaeebc7ef8bc9e3cabe8074eaef1666d /Makefile | |
parent | Initial commit. (diff) | |
download | postfix-5e61585d76ae77fd5e9e96ebabb57afa4d74880d.tar.xz postfix-5e61585d76ae77fd5e9e96ebabb57afa4d74880d.zip |
Adding upstream version 3.5.24.upstream/3.5.24upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | Makefile | 22 | ||||
-rw-r--r-- | Makefile.in | 180 | ||||
-rw-r--r-- | Makefile.init | 22 |
3 files changed, 224 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0e79e47 --- /dev/null +++ b/Makefile @@ -0,0 +1,22 @@ +# Usage: +# make makefiles [name=value]... +# +# See makedefs for a description of available options. +# Examples: +# +# make makefiles +# make makefiles CC="purify cc" +# make makefiles CC=cc OPT= +# +SHELL = /bin/sh + +default: update + +update depend printfck clean tidy depend_update: Makefiles + $(MAKE) MAKELEVEL= $@ + +install upgrade: + @echo Please review the INSTALL instructions first. + +makefiles Makefiles: + $(MAKE) -f Makefile.in MAKELEVEL= Makefiles diff --git a/Makefile.in b/Makefile.in new file mode 100644 index 0000000..bffe77d --- /dev/null +++ b/Makefile.in @@ -0,0 +1,180 @@ +# To test with valgrind: +# make -i tests VALGRIND="valgrind --tool=memcheck --log-file=/some/where.%p" +SHELL = /bin/sh +WARN = -Wmissing-prototypes -Wformat -Wno-comment -fcommon +OPTS = 'WARN=$(WARN)' +DIRS = src/util src/global src/dns src/tls src/xsasl src/master src/milter \ + src/postfix src/fsstone src/smtpstone \ + src/sendmail src/error src/pickup src/cleanup src/smtpd src/local \ + src/trivial-rewrite src/qmgr src/oqmgr src/smtp src/bounce \ + src/pipe src/showq src/postalias src/postcat src/postconf src/postdrop \ + src/postkick src/postlock src/postlog src/postmap src/postqueue \ + src/postsuper src/qmqpd src/spawn src/flush src/verify \ + src/virtual src/proxymap src/anvil src/scache src/discard src/tlsmgr \ + src/postmulti src/postscreen src/dnsblog src/tlsproxy \ + src/posttls-finger src/postlogd +MANDIRS = proto man html +LIBEXEC = libexec/post-install libexec/postfix-script libexec/postfix-wrapper \ + libexec/postmulti-script libexec/postfix-tls-script +PLUGINS = meta/dynamicmaps.cf +META = meta/main.cf.proto meta/master.cf.proto meta/postfix-files \ + meta/makedefs.out $(PLUGINS) +EXPAND = sed -e "s;\$${LIB_PREFIX};$(LIB_PREFIX);" \ + -e "s;\$${LIB_SUFFIX};$(LIB_SUFFIX);" +SHLIB_DIR_OVERRIDE = \ + $${shlib_directory:-`$(SHLIB_ENV) bin/postconf -dhx shlib_directory`} + +default: update + +# While generating the top-level Makefile, we must get the PLUGIN_LD +# setting directly from the latest makedefs.out result. + +makefiles Makefiles conf/makedefs.out: + (echo "# Do not edit -- this file documents how Postfix was built for your machine."; $(SHELL) makedefs) >makedefs.tmp + set +e; if cmp makedefs.tmp conf/makedefs.out; then rm makedefs.tmp; \ + else mv makedefs.tmp conf/makedefs.out; fi >/dev/null 2>/dev/null + set -e; for i in $(DIRS); do \ + (set -e; echo "[$$i]"; cd $$i; rm -f Makefile; \ + $(MAKE) -f Makefile.in Makefile MAKELEVEL=) || exit 1; \ + done + @set -- `grep '^PLUGIN_LD' conf/makedefs.out`; \ + rm -f Makefile; (cat conf/makedefs.out; \ + case "$$3" in \ + ""|":") grep -v '^PLUGINS' Makefile.in;; \ + *) cat Makefile.in;; \ + esac) >Makefile + +update printfck tests root_tests: + set -e; for i in $(DIRS); do \ + (set -e; echo "[$$i]"; cd $$i; $(MAKE) $(OPTS) $@ MAKELEVEL=) || exit 1; \ + done + +update: $(META) $(LIBEXEC) + +libexec/post-install: conf/post-install + rm -f $@ && ln -f $? $@ + +# Censor out build directory information. + +meta/makedefs.out: conf/makedefs.out + grep -v SHLIB_ENV $? > $@ + +meta/postfix-files: conf/postfix-files conf/makedefs.out Makefile + rm -f $@ + (if [ "${SHLIB_DIR}" = "no" -o "${SHLIB_DIR}" = "" ]; then \ + sed -e '/^\$$shlib_directory/d' \ + -e '/dynamicmaps.cf/d' conf/postfix-files; \ + elif [ "${PLUGIN_LD}" = ":" -o "${PLUGIN_LD}" = "" ]; then \ + sed -e '/dynamicmaps.cf/d' \ + -e '/^\$$shlib_directory\/\$${LIB_PREFIX}/d' \ + conf/postfix-files | $(EXPAND); \ + else \ + $(EXPAND) conf/postfix-files | awk -F: ' \ + BEGIN { \ + count = split("'"$(DEFINED_MAP_TYPES)"'", names, " "); \ + for (n = 1; n <= count; n++) \ + have["$$shlib_directory/$(LIB_PREFIX)" names[n] \ + "$(LIB_SUFFIX)"] = 1; } \ + /^[$$]shlib_directory.$(LIB_PREFIX)/ { \ + if (have[$$1]) print; next } \ + { print } \ + '; \ + fi) | case "$(MAKE_FIX)" in \ + *) cat;; \ + esac > $@ + +libexec/postfix-script: conf/postfix-script + rm -f $@ && ln -f $? $@ + +libexec/postfix-tls-script: conf/postfix-tls-script + rm -f $@ && ln -f $? $@ + +libexec/postfix-wrapper: conf/postfix-wrapper + rm -f $@ && ln -f $? $@ + +meta/main.cf.proto: conf/main.cf + rm -f $@ && ln -f $? $@ + +meta/master.cf.proto: conf/master.cf + rm -f $@ && ln -f $? $@ + +libexec/postmulti-script: conf/postmulti-script + rm -f $@ && ln -f $? $@ + +meta/dynamicmaps.cf: conf/dynamicmaps.cf Makefile + rm -f $@ && $(EXPAND) conf/dynamicmaps.cf | $(AWK) ' \ + BEGIN { split("'"$(DEFINED_MAP_TYPES)"'", map_types); \ + for (n in map_types) has_type[map_types[n]] = n } \ + /^#/ { print } \ + /^[a-z]/ { if (has_type[$$1]) print } \ + ' >$@ + +manpages: + set -e; for i in $(MANDIRS); do \ + (set -e; echo "[$$i]"; cd $$i; $(MAKE) -f Makefile.in $(OPTS) MAKELEVEL=) || exit 1; \ + done </dev/null + +printfck: update + +# The build-time shlib_directory setting must take precedence over +# the installed main.cf settings, otherwise we can't update an +# installed system from dynamicmaps=yes<->dynamicmaps=no or from +# shared=yes<->shared=no. + +install: update + SHLIB_ENV_VAR= SHLIB_ENV_VAL= \ + $(SHLIB_ENV) shlib_directory=$(SHLIB_DIR_OVERRIDE) $(SHELL) \ + postfix-install $(POSTFIX_INSTALL_OPTS) + +package: update + SHLIB_ENV_VAR= SHLIB_ENV_VAL= \ + $(SHLIB_ENV) shlib_directory=$(SHLIB_DIR_OVERRIDE) $(SHELL) \ + postfix-install -package $(POSTFIX_INSTALL_OPTS) + +upgrade: update + SHLIB_ENV_VAR= SHLIB_ENV_VAL= \ + $(SHLIB_ENV) shlib_directory=$(SHLIB_DIR_OVERRIDE) $(SHELL) \ + postfix-install -non-interactive $(POSTFIX_INSTALL_OPTS) + + +non-interactive-package: update + SHLIB_ENV_VAR= SHLIB_ENV_VAL= \ + $(SHLIB_ENV) shlib_directory=$(SHLIB_DIR_OVERRIDE) $(SHELL) \ + postfix-install -non-interactive -package $(POSTFIX_INSTALL_OPTS) + +depend clean: + set -e; for i in $(DIRS); do \ + (set -e; echo "[$$i]"; cd $$i; $(MAKE) $@) || exit 1; \ + done + +depend_update: + set -e; for i in $(DIRS); do \ + (set -e; echo "[$$i]"; cd $$i; $(MAKE) depend && $(MAKE) $(OPTS) update) \ + || exit 1; \ + done + +tidy: clean + rm -f Makefile */Makefile src/*/Makefile + cp -p Makefile.init Makefile + rm -f README_FILES/RELEASE_NOTES + ln -s ../RELEASE_NOTES README_FILES + rm -f bin/[!CRS]* lib/[!CRS]* include/[!CRS]* libexec/[!CRS]* \ + src/*/libpostfix-*.so src/*/libpostfix-*.dylib \ + src/*/postfix-*.so src/*/postfix-*.dylib \ + junk */junk */*/junk \ + *core */*core */*/*core \ + .nfs* */.nfs* */*/.nfs* \ + .pure */.pure */*/.pure \ + *.out */*.out */*/*.out \ + *.tmp */*.tmp */*/*.tmp \ + *.a */*.a */*/*.a \ + *~ */*~ */*/*~ \ + *- */*- */*/*- \ + *.orig */*.orig */*/*.orig \ + *.bak */*.bak */*/*.bak \ + make.err */make.err */*/make.err \ + *.gmon */*.gmon */*/*.gmon \ + conf/main.cf.default conf/bounce.cf.default meta/* + find . -type s -print | xargs rm -f + find . -type d -print | xargs chmod 755 + find . -type f -print | xargs chmod a+r diff --git a/Makefile.init b/Makefile.init new file mode 100644 index 0000000..0e79e47 --- /dev/null +++ b/Makefile.init @@ -0,0 +1,22 @@ +# Usage: +# make makefiles [name=value]... +# +# See makedefs for a description of available options. +# Examples: +# +# make makefiles +# make makefiles CC="purify cc" +# make makefiles CC=cc OPT= +# +SHELL = /bin/sh + +default: update + +update depend printfck clean tidy depend_update: Makefiles + $(MAKE) MAKELEVEL= $@ + +install upgrade: + @echo Please review the INSTALL instructions first. + +makefiles Makefiles: + $(MAKE) -f Makefile.in MAKELEVEL= Makefiles |