~clint-fewbar/ubuntu/precise/gearmand/drop-unneeded-patches

« back to all changes in this revision

Viewing changes to libhostile/include.am

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2009-09-28 21:43:31 UTC
  • mto: (1.2.3 upstream) (6.1.1 sid)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20090928214331-9bku0d3v1b1ypgp4
ImportĀ upstreamĀ versionĀ 0.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# vim:ft=automake
2
 
# libhostile
3
 
# Copyright (C) 2011 Data Differential
4
 
# All rights reserved.
5
 
#
6
 
# Use and distribution licensed under the BSD license.  See
7
 
# the COPYING file in the parent directory for full text.
8
 
#
9
 
# Included from Top Level Makefile.am
10
 
# All paths should be given relative to the root
11
 
 
12
 
 
13
 
noinst_LTLIBRARIES+= libhostile/libhostile.la
14
 
 
15
 
noinst_HEADERS+= \
16
 
                 libhostile/action.h \
17
 
                 libhostile/getaddrinfo.h \
18
 
                 libhostile/hostile.h \
19
 
                 libhostile/initialize.h \
20
 
                 libhostile/malloc.h \
21
 
                 libhostile/realloc.h \
22
 
                 libhostile/recv.h \
23
 
                 libhostile/send.h \
24
 
                 libhostile/setsockopt.h \
25
 
                 libhostile/write.h
26
 
 
27
 
libhostile_libhostile_la_SOURCES= libhostile/initialize.c
28
 
libhostile_libhostile_la_LIBADD= $(DL_LIB)
29
 
libhostile_libhostile_la_LIBADD+= $(RT_LIB)
30
 
 
31
 
if TARGET_LINUX
32
 
libhostile_libhostile_la_SOURCES+= \
33
 
                                   libhostile/getaddrinfo.c \
34
 
                                   libhostile/malloc.c \
35
 
                                   libhostile/realloc.c \
36
 
                                   libhostile/recv.c \
37
 
                                   libhostile/send.c \
38
 
                                   libhostile/setsockopt.c \
39
 
                                   libhostile/write.c
40
 
endif