mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
ea0e5c32e4
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
21 lines
555 B
Makefile
21 lines
555 B
Makefile
TARGET = ndbapi_async1
|
|
SRCS = ndbapi_async1.cpp
|
|
OBJS = ndbapi_async1.o
|
|
CXX = g++
|
|
CFLAGS = -c -Wall -fno-rtti -fno-exceptions
|
|
DEBUG =
|
|
LFLAGS = -Wall
|
|
INCLUDE_DIR = ../../include
|
|
LIB_DIR = -L../../src/.libs \
|
|
-L../../../libmysql_r/.libs \
|
|
-L../../../mysys -L../../../strings
|
|
SYS_LIB =
|
|
|
|
$(TARGET): $(OBJS)
|
|
$(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)
|
|
|
|
clean:
|
|
rm -f *.o $(TARGET)
|