mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 22:12:30 +01:00
554ae2336e
corrected mistake in previous patch
50 lines
1.8 KiB
Makefile
50 lines
1.8 KiB
Makefile
|
|
ndbtools_PROGRAMS = \
|
|
ndb_test_platform \
|
|
ndb_waiter \
|
|
ndb_drop_table \
|
|
ndb_delete_all \
|
|
ndb_desc \
|
|
ndb_drop_index \
|
|
ndb_show_tables \
|
|
ndb_select_all \
|
|
ndb_select_count \
|
|
ndb_restore
|
|
|
|
tools_common_sources = ../test/src/NDBT_ReturnCodes.cpp \
|
|
../test/src/NDBT_Table.cpp \
|
|
../test/src/NDBT_Output.cpp
|
|
|
|
ndb_test_platform_SOURCES = ndb_test_platform.cpp
|
|
ndb_waiter_SOURCES = waiter.cpp $(tools_common_sources)
|
|
ndb_delete_all_SOURCES = delete_all.cpp $(tools_common_sources)
|
|
ndb_desc_SOURCES = desc.cpp $(tools_common_sources)
|
|
ndb_drop_index_SOURCES = drop_index.cpp $(tools_common_sources)
|
|
ndb_drop_table_SOURCES = drop_tab.cpp $(tools_common_sources)
|
|
ndb_show_tables_SOURCES = listTables.cpp $(tools_common_sources)
|
|
ndb_select_all_SOURCES = select_all.cpp \
|
|
../test/src/NDBT_ResultRow.cpp \
|
|
$(tools_common_sources)
|
|
ndb_select_count_SOURCES = select_count.cpp $(tools_common_sources)
|
|
ndb_restore_SOURCES = restore/restore_main.cpp \
|
|
restore/consumer.cpp \
|
|
restore/consumer_restore.cpp \
|
|
restore/consumer_printer.cpp \
|
|
restore/Restore.cpp
|
|
|
|
include $(top_srcdir)/ndb/config/common.mk.am
|
|
include $(top_srcdir)/ndb/config/type_ndbapitools.mk.am
|
|
|
|
ndb_test_platform_LDFLAGS = @ndb_bin_am_ldflags@
|
|
ndb_waiter_LDFLAGS = @ndb_bin_am_ldflags@
|
|
ndb_drop_table_LDFLAGS = @ndb_bin_am_ldflags@
|
|
ndb_delete_all_LDFLAGS = @ndb_bin_am_ldflags@
|
|
ndb_desc_LDFLAGS = @ndb_bin_am_ldflags@
|
|
ndb_drop_index_LDFLAGS = @ndb_bin_am_ldflags@
|
|
ndb_show_tables_LDFLAGS = @ndb_bin_am_ldflags@
|
|
ndb_select_all_LDFLAGS = @ndb_bin_am_ldflags@
|
|
ndb_select_count_LDFLAGS = @ndb_bin_am_ldflags@
|
|
ndb_restore_LDFLAGS = @ndb_bin_am_ldflags@
|
|
|
|
# Don't update the files from bitkeeper
|
|
%::SCCS/s.%
|