2005-01-04 16:15:15 +01:00
|
|
|
BIN_DIRS := ndbapi_simple_example \
|
|
|
|
ndbapi_async_example \
|
|
|
|
ndbapi_async_example1 \
|
|
|
|
ndbapi_retries_example \
|
|
|
|
ndbapi_simple_index_example \
|
|
|
|
ndbapi_event_example \
|
2005-01-24 10:03:00 +01:00
|
|
|
ndbapi_scan_example \
|
|
|
|
mgmapi_logevent_example
|
2004-04-14 10:53:21 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2004-04-14 11:55:14 +02:00
|
|
|
clean_dep: clean
|
2004-04-14 10:53:21 +02:00
|
|
|
cleanall: clean
|
|
|
|
tidy: clean
|
|
|
|
distclean: clean
|