1SHELL = /bin/sh 2SRCS = error.c 3OBJS = error.o 4HDRS = 5TESTSRC = 6DEFS = -I. -I$(INC_DIR) -D$(SYSTYPE) 7CFLAGS = $(DEBUG) $(OPT) $(DEFS) 8TESTPROG= 9PROG = error 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: 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 | LANG=C 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' 62error.o: ../../include/attr.h 63error.o: ../../include/bounce.h 64error.o: ../../include/check_arg.h 65error.o: ../../include/defer.h 66error.o: ../../include/deliver_completed.h 67error.o: ../../include/deliver_request.h 68error.o: ../../include/dsn.h 69error.o: ../../include/dsn_buf.h 70error.o: ../../include/dsn_util.h 71error.o: ../../include/flush_clnt.h 72error.o: ../../include/htable.h 73error.o: ../../include/iostuff.h 74error.o: ../../include/mail_conf.h 75error.o: ../../include/mail_proto.h 76error.o: ../../include/mail_queue.h 77error.o: ../../include/mail_server.h 78error.o: ../../include/mail_version.h 79error.o: ../../include/msg.h 80error.o: ../../include/msg_stats.h 81error.o: ../../include/mymalloc.h 82error.o: ../../include/nvtable.h 83error.o: ../../include/recipient_list.h 84error.o: ../../include/sys_defs.h 85error.o: ../../include/sys_exits.h 86error.o: ../../include/vbuf.h 87error.o: ../../include/vstream.h 88error.o: ../../include/vstring.h 89error.o: error.c 90