diff options
| author | perry <perry@NetBSD.org> | 2002-02-02 23:10:24 +0000 |
|---|---|---|
| committer | perry <perry@NetBSD.org> | 2002-02-02 23:10:24 +0000 |
| commit | 6f59dc7aebbf705da79e61ef3fd24b48ed99d327 (patch) | |
| tree | c6e9fd356c8aac78b966a9dd53f5d0d14d5e62cd /gnu/dist/postfix/src/postqueue/Makefile.in | |
| parent | ecf43984517b4cfb837e78958769cc8207ea5288 (diff) | |
Postfix 1.1.2
(Postfix releases are now numbered -- 1.1.2 means 1.1, patchlevel 2.)
Lots of new features, same great security.
Diffstat (limited to 'gnu/dist/postfix/src/postqueue/Makefile.in')
| -rw-r--r-- | gnu/dist/postfix/src/postqueue/Makefile.in | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/gnu/dist/postfix/src/postqueue/Makefile.in b/gnu/dist/postfix/src/postqueue/Makefile.in new file mode 100644 index 00000000000..f9470cc9a47 --- /dev/null +++ b/gnu/dist/postfix/src/postqueue/Makefile.in @@ -0,0 +1,80 @@ +SHELL = /bin/sh +SRCS = postqueue.c +OBJS = postqueue.o +HDRS = +TESTSRC = +WARN = -W -Wformat -Wimplicit -Wmissing-prototypes \ + -Wparentheses -Wstrict-prototypes -Wswitch -Wuninitialized \ + -Wunused +DEFS = -I. -I$(INC_DIR) -D$(SYSTYPE) +CFLAGS = $(DEBUG) $(OPT) $(DEFS) +TESTPROG= +PROG = postqueue +INC_DIR = ../../include +LIBS = ../../lib/libglobal.a ../../lib/libutil.a + +.c.o:; $(CC) $(CFLAGS) -c $*.c + +$(PROG): $(OBJS) $(LIBS) + $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBS) $(SYSLIBS) + +Makefile: Makefile.in + (set -e; echo "# DO NOT EDIT"; $(OPTS) $(SHELL) ../../makedefs && cat $?) >$@ + +test: $(TESTPROG) + +update: ../../bin/$(PROG) + +../../bin/$(PROG): $(PROG) + cp $(PROG) ../../bin + +printfck: $(OBJS) $(PROG) + rm -rf printfck + mkdir printfck + sed '1,/^# do not edit/!d' Makefile >printfck/Makefile + set -e; for i in *.c; do printfck -f .printfck $$i >printfck/$$i; done + cd printfck; make "INC_DIR=../../../include" `cd ..; ls *.o` + +lint: + lint $(DEFS) $(SRCS) $(LINTFIX) + +clean: + rm -f *.o *core $(PROG) $(TESTPROG) junk + rm -rf printfck + +tidy: clean + +depend: $(MAKES) + (sed '1,/^# do not edit/!d' Makefile.in; \ + set -e; for i in [a-z][a-z0-9]*.c; do \ + $(CC) -E $(DEFS) $(INCL) $$i | sed -n -e '/^# *1 *"\([^"]*\)".*/{' \ + -e 's//'`echo $$i|sed 's/c$$/o/'`': \1/' -e 'p' -e '}'; \ + done) | grep -v '[.][o][:][ ][/]' >$$$$ && mv $$$$ Makefile.in + @$(EXPORT) make -f Makefile.in Makefile 1>&2 + +# do not edit below this line - it is generated by 'make depend' +postqueue.o: postqueue.c +postqueue.o: ../../include/sys_defs.h +postqueue.o: ../../include/msg.h +postqueue.o: ../../include/mymalloc.h +postqueue.o: ../../include/clean_env.h +postqueue.o: ../../include/vstream.h +postqueue.o: ../../include/vbuf.h +postqueue.o: ../../include/msg_vstream.h +postqueue.o: ../../include/msg_syslog.h +postqueue.o: ../../include/argv.h +postqueue.o: ../../include/safe.h +postqueue.o: ../../include/connect.h +postqueue.o: ../../include/iostuff.h +postqueue.o: ../../include/valid_hostname.h +postqueue.o: ../../include/mail_proto.h +postqueue.o: ../../include/attr.h +postqueue.o: ../../include/mail_params.h +postqueue.o: ../../include/mail_conf.h +postqueue.o: ../../include/mail_task.h +postqueue.o: ../../include/debug_process.h +postqueue.o: ../../include/mail_run.h +postqueue.o: ../../include/mail_flush.h +postqueue.o: ../../include/flush_clnt.h +postqueue.o: ../../include/smtp_stream.h +postqueue.o: ../../include/vstring.h |
