[sword-cvs] sword Makefile.am,1.31,1.32
sword@www.crosswire.org
sword@www.crosswire.org
Thu, 1 May 2003 03:59:47 -0700
Update of /usr/local/cvsroot/sword
In directory www:/tmp/cvs-serv14222
Modified Files:
Makefile.am
Log Message:
dglassey: fix build system to work with automake 1.6 again
Index: Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/sword/Makefile.am,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** Makefile.am 1 Mar 2003 18:57:05 -0000 1.31
--- Makefile.am 1 May 2003 10:59:45 -0000 1.32
***************
*** 62,73 ****
SUBDIRS = lib . icu apps
if BUILDTESTS
! SUBDIRS += tests
endif
if BUILDUTILS
! SUBDIRS += utilities
endif
if BUILDEXAMPLES
! SUBDIRS += examples
endif
INCLUDES = -I $(top_srcdir)/include
--- 62,81 ----
SUBDIRS = lib . icu apps
if BUILDTESTS
! TESTSDIR = tests
! else
! TESTSDIR =
endif
if BUILDUTILS
! UTILSDIR = utilities
! else
! UTILSDIR =
endif
if BUILDEXAMPLES
! EXAMPLESDIR = examples
! else
! EXAMPLESDIR =
endif
+
+ SUBDIRS += $(TESTSDIR) $(UTILSDIR) $(EXAMPLESDIR)
INCLUDES = -I $(top_srcdir)/include