1SHELL = /bin/sh 2SRCS = verify.c 3OBJS = verify.o 4HDRS = 5TESTSRC = 6DEFS = -I. -I$(INC_DIR) -D$(SYSTYPE) 7CFLAGS = $(DEBUG) $(OPT) $(DEFS) 8TESTPROG= 9PROG = verify 10INC_DIR = ../../include 11LIBS = ../../lib/lib$(LIB_PREFIX)master$(LIB_SUFFIX) \ 12 ../../lib/lib$(LIB_PREFIX)global$(LIB_SUFFIX) \ 13 ../../lib/lib$(LIB_PREFIX)util$(LIB_SUFFIX) 14 15.c.o:; $(CC) $(CFLAGS) -c $*.c 16 17$(PROG): $(OBJS) $(LIBS) 18 $(CC) $(CFLAGS) $(SHLIB_RPATH) -o $@ $(OBJS) $(LIBS) $(SYSLIBS) 19 20$(OBJS): ../../conf/makedefs.out 21 22Makefile: Makefile.in 23 cat ../../conf/makedefs.out $? >$@ 24 25test: $(TESTPROG) 26 27tests: test 28 29root_tests: 30 31update: ../../libexec/$(PROG) 32 33../../libexec/$(PROG): $(PROG) 34 cp $(PROG) ../../libexec 35 36printfck: $(OBJS) $(PROG) 37 rm -rf printfck 38 mkdir printfck 39 sed '1,/^# do not edit/!d' Makefile >printfck/Makefile 40 set -e; for i in *.c; do printfck -f .printfck $$i >printfck/$$i; done 41 cd printfck; make "INC_DIR=../../../include" `cd ..; ls *.o` 42 43lint: 44 lint $(DEFS) $(SRCS) $(LINTFIX) 45 46clean: 47 rm -f *.o *core $(PROG) $(TESTPROG) junk 48 rm -rf printfck 49 50tidy: clean 51 52depend: $(MAKES) 53 (sed '1,/^# do not edit/!d' Makefile.in; \ 54 set -e; for i in [a-z][a-z0-9]*.c; do \ 55 $(CC) -E $(DEFS) $(INCL) $$i | grep -v '[<>]' | sed -n -e '/^# *1 *"\([^"]*\)".*/{' \ 56 -e 's//'`echo $$i|sed 's/c$$/o/'`': \1/' \ 57 -e 's/o: \.\//o: /' -e p -e '}' ; \ 58 done | sort -u) | grep -v '[.][o][:][ ][/]' >$$$$ && mv $$$$ Makefile.in 59 @$(EXPORT) make -f Makefile.in Makefile 1>&2 60 61# do not edit below this line - it is generated by 'make depend' 62verify.o: ../../include/argv.h 63verify.o: ../../include/attr.h 64verify.o: ../../include/check_arg.h 65verify.o: ../../include/cleanup_user.h 66verify.o: ../../include/data_redirect.h 67verify.o: ../../include/deliver_request.h 68verify.o: ../../include/dict.h 69verify.o: ../../include/dict_cache.h 70verify.o: ../../include/dict_ht.h 71verify.o: ../../include/dsn.h 72verify.o: ../../include/events.h 73verify.o: ../../include/htable.h 74verify.o: ../../include/int_filt.h 75verify.o: ../../include/iostuff.h 76verify.o: ../../include/mail_conf.h 77verify.o: ../../include/mail_params.h 78verify.o: ../../include/mail_proto.h 79verify.o: ../../include/mail_server.h 80verify.o: ../../include/mail_version.h 81verify.o: ../../include/msg.h 82verify.o: ../../include/msg_stats.h 83verify.o: ../../include/myflock.h 84verify.o: ../../include/mymalloc.h 85verify.o: ../../include/nvtable.h 86verify.o: ../../include/post_mail.h 87verify.o: ../../include/recipient_list.h 88verify.o: ../../include/set_eugid.h 89verify.o: ../../include/smtputf8.h 90verify.o: ../../include/split_at.h 91verify.o: ../../include/stringops.h 92verify.o: ../../include/sys_defs.h 93verify.o: ../../include/vbuf.h 94verify.o: ../../include/verify_clnt.h 95verify.o: ../../include/verify_sender_addr.h 96verify.o: ../../include/vstream.h 97verify.o: ../../include/vstring.h 98verify.o: verify.c 99