~ubuntu-branches/ubuntu/hoary/plib-doc/hoary

« back to all changes in this revision

Viewing changes to src/net/client_server/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Philipp Frauenfelder
  • Date: 2004-07-13 20:56:29 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040713205629-gw7kmoiiwaqi6rol
Tags: 1.8.1-4
Changed build depends: added xlibs-dev, removed g++. Additionally, added
-lpthread to LDFLAGS for configure call. Closes: #259131

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
if BUILD_NET
 
2
 
 
3
noinst_PROGRAMS = net_udp_client net_udp_server
 
4
 
 
5
net_udp_client_SOURCES = net_udp_client.cxx
 
6
net_udp_client_LDADD = -lplibnet -lplibul
 
7
 
 
8
net_udp_server_SOURCES = net_udp_server.cxx
 
9
net_udp_server_LDADD = -lplibnet -lplibul
 
10
 
 
11
endif
 
12
 
 
13
EXTRA_DIST = net_udp_client.dsp net_udp_server.dsp
 
14