summaryrefslogtreecommitdiffstats
path: root/src/postqueue/Makefile.in
blob: f01c3ae3d64afe7dfff79de72343013128a8a666 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
SHELL	= /bin/sh
SRCS	= postqueue.c showq_compat.c showq_json.c
OBJS	= postqueue.o showq_compat.o showq_json.o
HDRS	= postqueue.h
TESTSRC	= 
DEFS	= -I. -I$(INC_DIR) -D$(SYSTYPE)
CFLAGS	= $(DEBUG) $(OPT) $(DEFS)
TESTPROG=
PROG	= postqueue
INC_DIR	= ../../include
LIBS	= ../../lib/lib$(LIB_PREFIX)global$(LIB_SUFFIX) \
	../../lib/lib$(LIB_PREFIX)util$(LIB_SUFFIX)

.c.o:;	$(CC) $(CFLAGS) -c $*.c

$(PROG): $(OBJS) $(LIBS)
	$(CC) $(CFLAGS) $(SHLIB_RPATH) -o $@ $(OBJS) $(LIBS) $(SYSLIBS)

$(OBJS): ../../conf/makedefs.out postqueue.h

Makefile: Makefile.in
	cat ../../conf/makedefs.out $? >$@

test:	$(TESTPROG)

tests:

root_tests:

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 | grep -v '[<>]' | sed -n -e '/^# *1 *"\([^"]*\)".*/{' \
	    -e 's//'`echo $$i|sed 's/c$$/o/'`': \1/' \
	    -e 's/o: \.\//o: /' -e p -e '}' ; \
	done | LANG=C sort -u) | 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: ../../include/argv.h
postqueue.o: ../../include/attr.h
postqueue.o: ../../include/check_arg.h
postqueue.o: ../../include/clean_env.h
postqueue.o: ../../include/connect.h
postqueue.o: ../../include/events.h
postqueue.o: ../../include/flush_clnt.h
postqueue.o: ../../include/htable.h
postqueue.o: ../../include/iostuff.h
postqueue.o: ../../include/mail_conf.h
postqueue.o: ../../include/mail_dict.h
postqueue.o: ../../include/mail_flush.h
postqueue.o: ../../include/mail_params.h
postqueue.o: ../../include/mail_parm_split.h
postqueue.o: ../../include/mail_proto.h
postqueue.o: ../../include/mail_queue.h
postqueue.o: ../../include/mail_run.h
postqueue.o: ../../include/mail_task.h
postqueue.o: ../../include/mail_version.h
postqueue.o: ../../include/maillog_client.h
postqueue.o: ../../include/msg.h
postqueue.o: ../../include/msg_vstream.h
postqueue.o: ../../include/mymalloc.h
postqueue.o: ../../include/nvtable.h
postqueue.o: ../../include/safe.h
postqueue.o: ../../include/smtp_stream.h
postqueue.o: ../../include/stringops.h
postqueue.o: ../../include/sys_defs.h
postqueue.o: ../../include/user_acl.h
postqueue.o: ../../include/valid_hostname.h
postqueue.o: ../../include/valid_mailhost_addr.h
postqueue.o: ../../include/vbuf.h
postqueue.o: ../../include/vstream.h
postqueue.o: ../../include/vstring.h
postqueue.o: ../../include/warn_stat.h
postqueue.o: postqueue.c
postqueue.o: postqueue.h
showq_compat.o: ../../include/attr.h
showq_compat.o: ../../include/check_arg.h
showq_compat.o: ../../include/htable.h
showq_compat.o: ../../include/iostuff.h
showq_compat.o: ../../include/mail_date.h
showq_compat.o: ../../include/mail_params.h
showq_compat.o: ../../include/mail_proto.h
showq_compat.o: ../../include/mail_queue.h
showq_compat.o: ../../include/msg.h
showq_compat.o: ../../include/mymalloc.h
showq_compat.o: ../../include/nvtable.h
showq_compat.o: ../../include/stringops.h
showq_compat.o: ../../include/sys_defs.h
showq_compat.o: ../../include/vbuf.h
showq_compat.o: ../../include/vstream.h
showq_compat.o: ../../include/vstring.h
showq_compat.o: postqueue.h
showq_compat.o: showq_compat.c
showq_json.o: ../../include/attr.h
showq_json.o: ../../include/check_arg.h
showq_json.o: ../../include/htable.h
showq_json.o: ../../include/iostuff.h
showq_json.o: ../../include/mail_date.h
showq_json.o: ../../include/mail_params.h
showq_json.o: ../../include/mail_proto.h
showq_json.o: ../../include/mail_queue.h
showq_json.o: ../../include/msg.h
showq_json.o: ../../include/mymalloc.h
showq_json.o: ../../include/nvtable.h
showq_json.o: ../../include/stringops.h
showq_json.o: ../../include/sys_defs.h
showq_json.o: ../../include/vbuf.h
showq_json.o: ../../include/vstream.h
showq_json.o: ../../include/vstring.h
showq_json.o: postqueue.h
showq_json.o: showq_json.c