diff options
Diffstat (limited to 'ndb/ndbapi-examples/Makefile')
-rw-r--r-- | ndb/ndbapi-examples/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ndb/ndbapi-examples/Makefile b/ndb/ndbapi-examples/Makefile new file mode 100644 index 00000000000..965dc3ec29f --- /dev/null +++ b/ndb/ndbapi-examples/Makefile @@ -0,0 +1,25 @@ +BIN_DIRS := ndbapi_simple_example \ + ndbapi_async_example \ + ndbapi_async_example1 \ + ndbapi_retries_example \ + ndbapi_simple_index_example \ + ndbapi_event_example \ + ndbapi_scan_example \ + mgmapi_logevent_example + +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 |