mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
f55af1eade
bug#24667 After ALTER TABLE operation ndb_dd table becomes regular ndb: disallowed TABLESPACE declaration for STORAGE MEMORY Makefile: Rename: storage/ndb/ndbapi-examples/mgmapi_logevent_dual/Makefile -> storage/ndb/ndbapi-examples/mgmapi_logevent2/Makefile mgmapi_logevent2.cpp: Rename: storage/ndb/ndbapi-examples/mgmapi_logevent_dual/mgmapi_logevent_dual.cpp -> storage/ndb/ndbapi-examples/mgmapi_logevent_dual/mgmapi_logevent2.cpp Makefile: Rename mgmapi_logevent_dual to mgmapi_logevent2 mgmapi_logevent2.cpp: Rename: storage/ndb/ndbapi-examples/mgmapi_logevent_dual/mgmapi_logevent2.cpp -> storage/ndb/ndbapi-examples/mgmapi_logevent2/mgmapi_logevent2.cpp
27 lines
467 B
Makefile
27 lines
467 B
Makefile
BIN_DIRS := ndbapi_simple \
|
|
ndbapi_async \
|
|
ndbapi_async1 \
|
|
ndbapi_retries \
|
|
ndbapi_simple_index \
|
|
ndbapi_event \
|
|
ndbapi_scan \
|
|
mgmapi_logevent \
|
|
ndbapi_simple_dual \
|
|
mgmapi_logevent2
|
|
|
|
bins: $(patsubst %, _bins_%, $(BIN_DIRS))
|
|
|
|
$(patsubst %, _bins_%, $(BIN_DIRS)) :
|
|
$(MAKE) -C $(patsubst _bins_%, %, $@) $(OPTS)
|
|
|
|
libs:
|
|
|
|
clean:
|
|
for f in ${BIN_DIRS}; do \
|
|
$(MAKE) -C $$f $@;\
|
|
done
|
|
|
|
clean_dep: clean
|
|
cleanall: clean
|
|
tidy: clean
|
|
distclean: clean
|