mariadb/storage/ndb/ndbapi-examples/Makefile

28 lines
467 B
Makefile
Raw Normal View History

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 \
mgmapi_logevent \
ndbapi_simple_dual \
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