[Libsysio-commit] RELEASE_1_3: libsysio Rules.make
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2008-06-17 14:43:57
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19407 Modified Files: Tag: RELEASE_1_3 Rules.make Log Message: More integration of the stddev pseudo-driver. Needed to define STDDEV_DEV as one and give location of the include file. Index: Rules.make =================================================================== RCS file: /cvsroot/libsysio/libsysio/Rules.make,v retrieving revision 1.13 retrieving revision 1.13.2.1 diff -u -w -b -B -p -r1.13 -r1.13.2.1 --- Rules.make 20 Aug 2007 19:28:12 -0000 1.13 +++ Rules.make 17 Jun 2008 14:43:48 -0000 1.13.2.1 @@ -3,6 +3,11 @@ STDFD_DEV_CPPFLAGS =-DSTDFD_DEV=1 -I$(to else STFD_DEV_CPPFLAGS = endif +if WITH_STDDEV_DEV +STDDEV_DEV_CPPFLAGS =-DSTDDEV_DEV=1 -I$(top_srcdir)/dev +else +STDEV_DEV_CPPFLAGS = +endif if WITH_SOCKETS_DRIVER SOCKETS_CPPFLAGS=-DWITH_SOCKETS=1 @@ -10,7 +15,7 @@ else SOCKETS_CPPFLAGS= endif -DEV_CPPFLAGS = $(STDFD_DEV_CPPFLAGS) +DEV_CPPFLAGS = $(STDFD_DEV_CPPFLAGS) $(STDDEV_DEV_CPPFLAGS) AM_CPPFLAGS = \ $(TRACING) \ |