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:
@ -8,11 +8,11 @@ LFLAGS = -Wall
|
||||
INCLUDE_DIR = ../../include
|
||||
LIB_DIR = -L../../src/.libs \
|
||||
-L../../../libmysql_r/.libs \
|
||||
-L../../../mysys
|
||||
-L../../../mysys -L../../../strings
|
||||
SYS_LIB =
|
||||
|
||||
$(TARGET): $(OBJS)
|
||||
$(CXX) $(LFLAGS) $(LIB_DIR) $(OBJS) -lndbclient -lmysqlclient_r -lmysys -lz $(SYS_LIB) -o $(TARGET)
|
||||
$(CXX) $(LFLAGS) $(LIB_DIR) $(OBJS) -lndbclient -lmysqlclient_r -lmysys -lmystrings -lz $(SYS_LIB) -o $(TARGET)
|
||||
|
||||
$(TARGET).o: $(SRCS)
|
||||
$(CXX) $(CFLAGS) -I$(INCLUDE_DIR) -I$(INCLUDE_DIR)/ndbapi $(SRCS)
|
||||
|
Reference in New Issue
Block a user