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