[elephant-cvs] CVS update: elephant/Makefile elephant/elephant-tests.asd elephant/elephant.asd
Robert L. Read
rread at common-lisp.net
Tue Oct 18 20:41:25 UTC 2005
Update of /project/elephant/cvsroot/elephant
In directory common-lisp.net:/tmp/cvs-serv16451
Modified Files:
Tag: SQL-BACK-END
Makefile elephant-tests.asd elephant.asd
Log Message:
Differences of existing files based on sql-back-end work
Date: Tue Oct 18 22:41:24 2005
Author: rread
Index: elephant/Makefile
diff -u elephant/Makefile:1.6 elephant/Makefile:1.6.2.1
--- elephant/Makefile:1.6 Thu Feb 24 02:06:20 2005
+++ elephant/Makefile Tue Oct 18 22:41:24 2005
@@ -7,7 +7,8 @@
SHELL=/bin/sh
UNAME:=$(shell uname -s)
-DB43DIR=/db/ben/lisp/db43
+# DB43DIR=/db/ben/lisp/db43
+DB43DIR=/usr/local/BerkeleyDB.4.3/
DBLIBDIR=$(DB43DIR)/lib/
DBINCDIR=$(DB43DIR)/include/
@@ -21,6 +22,12 @@
SHARED=-shared
endif
-libsleepycat.so: src/libsleepycat.c
- gcc $(SHARED) -Wall -L$(DBLIBDIR) -I$(DBINCDIR) -fPIC -O3 -o $@ $< -ldb -lm
+all: libsleepycat.so libmemutil.so
+
+libmemutil.so: src/libmemutil.c
+ gcc $(SHARED) -Wall -fPIC -O3 -o $@ $< -lm
+
+libsleepycat.so: src/libsleepycat.c
+ gcc $(SHARED) -Wall -L$(DBLIBDIR) -I$(DBINCDIR) -fPIC -O3 -o $@ $< -ldb -lm
+
Index: elephant/elephant-tests.asd
diff -u elephant/elephant-tests.asd:1.3 elephant/elephant-tests.asd:1.3.2.1
--- elephant/elephant-tests.asd:1.3 Thu Feb 24 02:07:55 2005
+++ elephant/elephant-tests.asd Tue Oct 18 22:41:24 2005
@@ -58,6 +58,7 @@
(:file "mop-tests")
(:file "testcollections")
(:file "testsleepycat")
+ (:file "testmigration")
)
:serial t)))
-
\ No newline at end of file
+
Index: elephant/elephant.asd
diff -u elephant/elephant.asd:1.7 elephant/elephant.asd:1.7.2.1
--- elephant/elephant.asd:1.7 Thu Feb 24 02:07:54 2005
+++ elephant/elephant.asd Tue Oct 18 22:41:24 2005
@@ -60,8 +60,8 @@
(:file "cmu-mop-patches")
(:file "metaclasses")
(:file "classes")
- (:file "collections")
(:file "controller")
+ (:file "collections")
(:file "serializer"))
:serial t))
:depends-on (:uffi))
More information about the Elephant-cvs
mailing list