~csurbhi/ubuntu/maverick/iptables/iptable-fix.600195

« back to all changes in this revision

Viewing changes to iptables/libipq/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2008-06-24 15:06:04 UTC
  • mfrom: (5.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080624150604-5t7r1o1kxq0ycz81
Tags: 1.4.0-4ubuntu1
* Merge from debian unstable, remaining changes:
  - Took references to 2.4 kernel out of doc-base control files (Jordan
    Mantha, Malone #25972) (patches/all/091-fix-2.4-references.patch)
  - Use linux-libc-dev instead of local copy of kernel-headers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /usr/bin/make
2
 
 
3
 
EXTRAS+=libipq/libipq.a libipq/libipq_pic.a
4
 
#CFLAGS+=-DDEBUG_LIBIPTQ
5
 
 
6
 
DEVEL_MAN3+=libipq/ipq_create_handle.3 \
7
 
        libipq/ipq_destroy_handle.3 \
8
 
        libipq/ipq_errstr.3 \
9
 
        libipq/ipq_get_msgerr.3 \
10
 
        libipq/ipq_get_packet.3 \
11
 
        libipq/ipq_message_type.3 \
12
 
        libipq/ipq_perror.3 \
13
 
        libipq/ipq_read.3 \
14
 
        libipq/ipq_set_mode.3 \
15
 
        libipq/ipq_set_verdict.3 \
16
 
        libipq/libipq.3
17
 
 
18
 
DEVEL_LIBS+=libipq/libipq.a libipq/libipq_pic.a
19
 
 
20
 
DEVEL_HEADERS+=include/libipq/libipq.h
21
 
 
22
 
ifndef TOPLEVEL_INCLUDED
23
 
local:
24
 
        cd .. && $(MAKE) $(SHARED_LIBS) $(EXTRAS)
25
 
else
26
 
libipq/libipq.a: libipq/libipq.a(libipq/libipq.o)
27
 
 
28
 
libipq/libipq_pic.o: libipq/libipq.c
29
 
        $(CC) $(SH_CFLAGS) -c -o $@ $^
30
 
 
31
 
libipq/libipq_pic.a: libipq/libipq_pic.o
32
 
        rm -f $@; ar crv $@ $^
33
 
endif
34