2005-09-15 11:33:50 +02:00
|
|
|
BIN_DIRS := ndbapi_simple \
|
|
|
|
ndbapi_async \
|
|
|
|
ndbapi_async1 \
|
|
|
|
ndbapi_retries \
|
|
|
|
ndbapi_simple_index \
|
|
|
|
ndbapi_event \
|
|
|
|
ndbapi_scan \
|
2006-09-01 15:14:50 +02:00
|
|
|
mgmapi_logevent \
|
|
|
|
ndbapi_simple_dual \
|
2006-12-20 15:15:26 +01:00
|
|
|
mgmapi_logevent2
|
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
|