mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
updated example makefiles to add libmystrings
temporary added trace printouts for ndb autotest ndb/ndbapi-examples/ndbapi_async_example/Makefile: updated example makefiles to add libmystrings ndb/ndbapi-examples/ndbapi_async_example1/Makefile: updated example makefiles to add libmystrings ndb/ndbapi-examples/ndbapi_event_example/Makefile: updated example makefiles to add libmystrings ndb/ndbapi-examples/ndbapi_retries_example/Makefile: updated example makefiles to add libmystrings ndb/ndbapi-examples/ndbapi_scan_example/Makefile: updated example makefiles to add libmystrings ndb/ndbapi-examples/ndbapi_simple_example/Makefile: updated example makefiles to add libmystrings ndb/ndbapi-examples/ndbapi_simple_index_example/Makefile: updated example makefiles to add libmystrings ndb/src/common/transporter/TransporterRegistry.cpp: temporary added trace printouts for ndb autotest
This commit is contained in:
@ -10,11 +10,11 @@ TOP_SRCDIR = ../../..
|
||||
INCLUDE_DIR = $(TOP_SRCDIR)
|
||||
LIB_DIR = -L$(TOP_SRCDIR)/ndb/src/.libs \
|
||||
-L$(TOP_SRCDIR)/libmysql_r/.libs \
|
||||
-L$(TOP_SRCDIR)/mysys
|
||||
-L$(TOP_SRCDIR)/mysys -L$(TOP_SRCDIR)/strings
|
||||
SYS_LIB =
|
||||
|
||||
$(TARGET): $(OBJS)
|
||||
$(CXX) $(CXXFLAGS) $(LFLAGS) $(LIB_DIR) $(OBJS) -lndbclient -lmysqlclient_r -lmysys -lz $(SYS_LIB) -o $(TARGET)
|
||||
$(CXX) $(CXXFLAGS) $(LFLAGS) $(LIB_DIR) $(OBJS) -lndbclient -lmysqlclient_r -lmysys -lmystrings -lz $(SYS_LIB) -o $(TARGET)
|
||||
|
||||
$(TARGET).o: $(SRCS)
|
||||
$(CXX) $(CFLAGS) -I$(INCLUDE_DIR)/include -I$(INCLUDE_DIR)/extra -I$(INCLUDE_DIR)/ndb/include -I$(INCLUDE_DIR)/ndb/include/ndbapi $(SRCS)
|
||||
|
Reference in New Issue
Block a user