mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
f87b4e5d7d
git-svn-id: file:///svn/tokudb@1196 c7de825b-a66e-492c-adef-691d508d4ae1
10 lines
216 B
Makefile
10 lines
216 B
Makefile
CPPFLAGS = -I../include
|
|
CXXFLAGS = -Wall -g
|
|
CC = c++
|
|
LDFLAGS = -lz
|
|
SRCS = $(wildcard *.cpp)
|
|
OBJS = $(patsubst %.cpp, %.o, $(SRCS))
|
|
default: $(OBJS)
|
|
$(OBJS): db_cxx.h
|
|
test1: test1.o dbt.o db.o dbenv.o ../lib/libdb.a
|
|
|