Update of /cvsroot/libsysio/libsysio
In directory sc8-pr-cvs1:/tmp/cvs-serv17157
Modified Files:
Tag: cplant
Makefile.am
Log Message:
skip test dir if configuring libs with cplant yod
Index: Makefile.am
===================================================================
RCS file: /cvsroot/libsysio/libsysio/Makefile.am,v
retrieving revision 1.7.2.1
retrieving revision 1.7.2.2
diff -u -w -b -B -p -r1.7.2.1 -r1.7.2.2
--- Makefile.am 28 Apr 2003 20:17:19 -0000 1.7.2.1
+++ Makefile.am 13 Jun 2003 00:01:10 -0000 1.7.2.2
@@ -1,15 +1,19 @@
if WITH_TESTS
-if WITH_CPLANT_YOD
-TESTS =
-else
TESTS = tests
-endif
else
TESTS =
endif
+if WITH_CPLANT_TESTS
+SUBDIRS = $(TESTS)
+else
+if WITH_CPLANT_YOD
+SUBDIRS = src drivers dev
+else
SUBDIRS = src drivers dev $(TESTS)
+endif
+endif
EXTRA_DIST = Rules.make \
include/dev.h include/file.h include/fs.h include/inode.h \
|