mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 11:31:51 +01:00
27 lines
661 B
Makefile
27 lines
661 B
Makefile
|
|
ndbtools_PROGRAMS = \
|
|
ndb_waiter \
|
|
ndb_drop_table \
|
|
ndb_delete_all \
|
|
ndb_desc \
|
|
ndb_drop_index \
|
|
ndb_show_tables \
|
|
ndb_select_all \
|
|
ndb_select_count
|
|
|
|
ndb_waiter_SOURCES = waiter.cpp
|
|
ndb_delete_all_SOURCES = delete_all.cpp
|
|
ndb_desc_SOURCES = desc.cpp
|
|
ndb_drop_index_SOURCES = drop_index.cpp
|
|
ndb_drop_table_SOURCES = drop_tab.cpp
|
|
ndb_show_tables_SOURCES = listTables.cpp
|
|
ndb_select_all_SOURCES = select_all.cpp
|
|
ndb_select_count_SOURCES = select_count.cpp
|
|
|
|
include $(top_srcdir)/ndb/config/common.mk.am
|
|
include $(top_srcdir)/ndb/config/type_ndbapitools.mk.am
|
|
|
|
AM_LDFLAGS = @ndb_bin_am_ldflags@
|
|
|
|
# Don't update the files from bitkeeper
|
|
%::SCCS/s.%
|