~ubuntu-branches/ubuntu/hoary/postfix/hoary-security

« back to all changes in this revision

Viewing changes to src/tlsmgr/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2004-10-06 11:50:33 UTC
  • Revision ID: james.westby@ubuntu.com-20041006115033-9oky44ylqmhjy7eq
Tags: 2.1.3-1ubuntu17
* Deliver man pages for master.cf services in section 8postfix.
  Remove smtpd.8.gz diversion. Closes: #274777
* Clean up postfix-mysql documentation (created README.Debian files).
  Closes: Warty#2022
* Fix typo in postmap man page.  Closes: #271369

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SHELL   = /bin/sh
 
2
SRCS    = ../global/pfixtls.c tlsmgr.c
 
3
OBJS    = tlsmgr.o
 
4
HDRS    =
 
5
TESTSRC =
 
6
WARN    = -W -Wformat -Wimplicit -Wmissing-prototypes \
 
7
        -Wparentheses -Wstrict-prototypes -Wswitch -Wuninitialized \
 
8
        -Wunused
 
9
DEFS    = -I. -I$(INC_DIR) -D$(SYSTYPE)
 
10
CFLAGS  = $(DEBUG) $(OPT) $(DEFS)
 
11
TESTPROG= 
 
12
PROG    = tlsmgr
 
13
INC_DIR = ../../include
 
14
LIBS    = ../../lib/libmaster.a ../../lib/libglobal.a ../../lib/libutil.a ../../lib/pfixtls.o
 
15
TLSO    = pfixtls.o
 
16
 
 
17
$(TLSO):;       $(CC) $(CFLAGS) -c ../global/pfixtls.c
 
18
 
 
19
.c.o:;  $(CC) $(CFLAGS) -c $*.c
 
20
 
 
21
$(PROG):        $(OBJS) $(LIBS)
 
22
        $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBS) $(SYSLIBS)
 
23
 
 
24
Makefile: Makefile.in
 
25
        (set -e; echo "# DO NOT EDIT"; $(OPTS) $(SHELL) ../../makedefs; cat $?) >$@
 
26
 
 
27
test:   $(TESTPROG)
 
28
 
 
29
update: ../../lib/$(TLSO) ../../libexec/$(PROG)
 
30
 
 
31
../../lib/$(TLSO): $(TLSO)
 
32
        cp $(TLSO) ../../lib
 
33
 
 
34
../../libexec/$(PROG): $(PROG)
 
35
        cp $(PROG) ../../libexec
 
36
 
 
37
printfck: $(OBJS) $(PROG)
 
38
        rm -rf printfck
 
39
        mkdir printfck
 
40
        cp *.h printfck
 
41
        sed '1,/^# do not edit/!d' Makefile >printfck/Makefile
 
42
        set -e; for i in *.c; do printfck -f .printfck $$i >printfck/$$i; done
 
43
        cd printfck; make "INC_DIR=../../../../include" `cd ../..; ls *.o`
 
44
 
 
45
lint:
 
46
        lint $(DEFS) $(SRCS) $(LINTFIX)
 
47
 
 
48
clean:
 
49
        rm -f *.o *core $(PROG) $(TESTPROG) junk pfixtls.c
 
50
        rm -rf printfck
 
51
 
 
52
tidy:   clean
 
53
 
 
54
depend: $(MAKES)
 
55
        (sed '1,/^# do not edit/!d' Makefile.in; \
 
56
        set -e; for i in [a-z][a-z0-9]*.c; do \
 
57
            $(CC) -E $(DEFS) $(INCL) $$i | sed -n -e '/^# *1 *"\([^"]*\)".*/{' \
 
58
            -e 's//'`echo $$i|sed 's/c$$/o/'`': \1/' -e 'p' -e '}'; \
 
59
        done) | grep -v '[.][o][:][ ][/]' >$$$$ && mv $$$$ Makefile.in
 
60
        @make -f Makefile.in Makefile
 
61
 
 
62
# do not edit below this line - it is generated by 'make depend'
 
63
tlsmgr.o: tlsmgr.c
 
64
tlsmgr.o: ../../include/sys_defs.h
 
65
tlsmgr.o: ../../include/msg.h
 
66
tlsmgr.o: ../../include/events.h
 
67
tlsmgr.o: ../../include/vstream.h
 
68
tlsmgr.o: ../../include/vbuf.h
 
69
tlsmgr.o: ../../include/dict.h
 
70
tlsmgr.o: ../../include/argv.h
 
71
tlsmgr.o: ../../include/vstring.h
 
72
tlsmgr.o: ../../include/stringops.h
 
73
tlsmgr.o: ../../include/mymalloc.h
 
74
tlsmgr.o: ../../include/connect.h
 
75
tlsmgr.o: ../../include/myflock.h
 
76
tlsmgr.o: ../../include/mail_conf.h
 
77
tlsmgr.o: ../../include/mail_params.h
 
78
tlsmgr.o: ../../include/iostuff.h
 
79
tlsmgr.o: ../../include/master_proto.h
 
80
tlsmgr.o: ../../include/mail_server.h
 
81
tlsmgr.o: ../../include/pfixtls.h
 
82
pfixtls.o: ../global/pfixtls.c
 
83
pfixtls.o: ../../include/sys_defs.h
 
84
pfixtls.o: ../../include/iostuff.h
 
85
pfixtls.o: ../../include/mymalloc.h
 
86
pfixtls.o: ../../include/vstring.h
 
87
pfixtls.o: ../../include/vstream.h
 
88
pfixtls.o: ../../include/dict.h
 
89
pfixtls.o: ../../include/myflock.h
 
90
pfixtls.o: ../../include/stringops.h
 
91
pfixtls.o: ../../include/msg.h
 
92
pfixtls.o: ../../include/connect.h
 
93
pfixtls.o: ../../include/mail_params.h
 
94
pfixtls.o: ../../include/pfixtls.h