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

« back to all changes in this revision

Viewing changes to src/dns/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:
12
12
LIB_DIR = ../../lib
13
13
INC_DIR = ../../include
14
14
 
15
 
.c.o:;  $(CC) $(CFLAGS) -c $*.c
 
15
.c.o:;  $(CC) -fPIC $(CFLAGS) -c $*.c
16
16
 
17
17
all: $(LIB)
18
18
 
24
24
tests:  test
25
25
 
26
26
$(LIB): $(OBJS)
27
 
        $(AR) $(ARFL) $(LIB) $?
28
 
        $(RANLIB) $(LIB)
 
27
        gcc -shared -Wl,-soname,libpostfix-dns.so.1 -o $(LIB) $(OBJS) $(LIBS) $(SYSLIBS)
29
28
 
30
29
$(LIB_DIR)/$(LIB): $(LIB)
31
30
        cp $(LIB) $(LIB_DIR)
32
 
        $(RANLIB) $(LIB_DIR)/$(LIB)
33
31
 
34
32
update: $(LIB_DIR)/$(LIB) $(HDRS)
35
33
        -for i in $(HDRS); \