mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
683fd63c7e
git-svn-id: file:///svn/tokudb@1216 c7de825b-a66e-492c-adef-691d508d4ae1
15 lines
259 B
Makefile
15 lines
259 B
Makefile
SRCS = $(wildcard *.cpp)
|
|
TARGETS = $(patsubst %.cpp,%,$(SRCS))
|
|
|
|
CPPFLAGS = -I../ -I../../include
|
|
CXXFLAGS = -Wall -g
|
|
LDLIBS = ../../lib/libtdb_cxx.a ../../lib/libdb.a -lz
|
|
|
|
all: $(TARGETS)
|
|
$(TARGETS): $(DBCXX)
|
|
|
|
$(DBCXX):
|
|
cd ..;make
|
|
|
|
clean:
|
|
rm -rf $(TARGETS)
|