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

« back to all changes in this revision

Viewing changes to src/postfix/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-ooo6yfg6kmoteu04
Tags: upstream-2.1.3
ImportĀ upstreamĀ versionĀ 2.1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SHELL   = /bin/sh
 
2
SRCS    = postfix.c 
 
3
OBJS    = postfix.o 
 
4
HDRS    = 
 
5
TESTSRC = 
 
6
DEFS    = -I. -I$(INC_DIR) -D$(SYSTYPE)
 
7
CFLAGS  = $(DEBUG) $(OPT) $(DEFS)
 
8
FILES   = Makefile $(SRCS) $(HDRS)
 
9
INC_DIR = ../../include
 
10
TESTPROG=
 
11
PROG    = postfix
 
12
LIBS    = ../../lib/libglobal.a ../../lib/libutil.a
 
13
 
 
14
.c.o:;  $(CC) $(CFLAGS) -c $*.c
 
15
 
 
16
$(PROG):        $(OBJS) $(LIBS)
 
17
        $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBS) $(SYSLIBS)
 
18
 
 
19
Makefile: Makefile.in
 
20
        (set -e; echo "# DO NOT EDIT"; $(OPTS) $(SHELL) ../../makedefs && cat $?) >$@
 
21
 
 
22
test:   $(TESTPROG)
 
23
 
 
24
tests:  test
 
25
 
 
26
update: ../../bin/$(PROG)
 
27
 
 
28
../../bin/$(PROG): $(PROG)
 
29
        cp $(PROG) ../../bin
 
30
 
 
31
printfck: $(OBJS) $(PROG)
 
32
        rm -rf printfck
 
33
        mkdir printfck
 
34
        sed '1,/^# do not edit/!d' Makefile >printfck/Makefile
 
35
        set -e; for i in *.c; do printfck -f .printfck $$i >printfck/$$i; done
 
36
        cd printfck; make "INC_DIR=../../../include" `cd ..; ls *.o`
 
37
 
 
38
shar:
 
39
        @shar $(FILES)
 
40
 
 
41
lint:
 
42
        lint $(SRCS)
 
43
 
 
44
clean:
 
45
        rm -f *.o *core $(PROG) $(TESTPROG) junk
 
46
        rm -rf printfck
 
47
 
 
48
tidy:   clean
 
49
 
 
50
depend: $(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 | sed -n -e '/^# *1 *"\([^"]*\)".*/{' \
 
54
            -e 's//'`echo $$i|sed 's/c$$/o/'`': \1/' -e 'p' -e '}'; \
 
55
        done) | grep -v '[.][o][:][ ][/]' >$$$$ && mv $$$$ Makefile.in
 
56
        @$(EXPORT) make -f Makefile.in Makefile 1>&2
 
57
 
 
58
# do not edit below this line - it is generated by 'make depend'
 
59
postfix.o: postfix.c
 
60
postfix.o: ../../include/sys_defs.h
 
61
postfix.o: ../../include/vstream.h
 
62
postfix.o: ../../include/vbuf.h
 
63
postfix.o: ../../include/msg.h
 
64
postfix.o: ../../include/msg_vstream.h
 
65
postfix.o: ../../include/msg_syslog.h
 
66
postfix.o: ../../include/stringops.h
 
67
postfix.o: ../../include/vstring.h
 
68
postfix.o: ../../include/clean_env.h
 
69
postfix.o: ../../include/argv.h
 
70
postfix.o: ../../include/safe.h
 
71
postfix.o: ../../include/mail_conf.h
 
72
postfix.o: ../../include/mail_params.h