mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
0243ed5122
git-svn-id: file:///svn/tokudb@37 c7de825b-a66e-492c-adef-691d508d4ae1
9 lines
450 B
Makefile
9 lines
450 B
Makefile
CFLAGS = -W -Wall -Wno-unused -g -fPIC
|
|
CPPFLAGS = -I../include -I../newbrt
|
|
install: libdb.so
|
|
cp libdb.so ../lib/
|
|
ydb.o: ../include/db.h ../newbrt/cachetable.h
|
|
DBBINS = ydb.o ../newbrt/brt.o ../newbrt/brt-serialize.o ../newbrt/cachetable.o ../newbrt/hashtable.o ../newbrt/header-io.o ../newbrt/key.o ../newbrt/memory.o ../newbrt/pma.o ../newbrt/ybt.o
|
|
libdb.so: $(DBBINS)
|
|
cc $(CPPFLAGS) $(DBBINS) -shared -o libdb.so $(CFLAGS)
|
|
libdb.a(ydb.o): ydb.o
|