Update of /cvsroot/plib/plib/examples/src/net/http_get
In directory usw-pr-cvs1:/tmp/cvs-serv24796/src/net/http_get
Modified Files:
Makefile.am
Log Message:
Support for building only certain examples
Index: Makefile.am
===================================================================
RCS file: /cvsroot/plib/plib/examples/src/net/http_get/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- Makefile.am 8 May 2002 21:24:24 -0000 1.3
+++ Makefile.am 1 Sep 2002 05:22:24 -0000 1.4
@@ -1,8 +1,12 @@
+if BUILD_NET
+
noinst_PROGRAMS = http_get
http_get_SOURCES = http_get.cxx
http_get_LDADD = -lplibnet -lplibul
+
+endif
EXTRA_DIST = http_get.dsp
|