~ubuntu-branches/ubuntu/oneiric/libproxy/oneiric-updates

« back to all changes in this revision

Viewing changes to src/lib/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-04-13 16:08:18 UTC
  • mfrom: (1.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20100413160818-ehegim3im5iowd2j
Tags: 0.3.1-1ubuntu1
Resync on the Debian testing version for lucid but built it using webkit

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
lib_LTLIBRARIES     = libproxy.la
2
 
libproxy_la_SOURCES = misc.c url.c pac.c dhcp.c dns.c slp.c wpad.c proxy_factory.c config_file.c \
3
 
                                                misc.h url.h pac.h dhcp.h dns.h slp.h wpad.h proxy_factory.h proxy.h config_file.h
4
 
libproxy_la_CFLAGS  = -Wall
5
 
libproxy_la_LDFLAGS = -lm
 
2
libproxy_la_SOURCES = \
 
3
                                                array.c array.h \
 
4
                                                config_file.c config_file.h \
 
5
                                                misc.c misc.h \
 
6
                                                module_manager.c module_manager.h \
 
7
                                                modules.h \
 
8
                                                pac.c pac.h \
 
9
                                                proxy.c proxy.h \
 
10
                                                strdict.c strdict.h \
 
11
                                                url.c url.h
 
12
 
 
13
libproxy_la_CFLAGS  = -DMODULEDIR=\"@MODULEDIR@@DIR_SEPARATOR@\" -DSYSCONFDIR=\"@SYSCONFDIR@@DIR_SEPARATOR@\" -std=c99 -D_POSIX_C_SOURCE=200112L
 
14
libproxy_la_LDFLAGS = -lpthread -lm -no-undefined
6
15
 
7
16
include_HEADERS     = proxy.h
8
17