mariadb/ndb/examples/Makefile
unknown e6240e593d Fix up of Makefiles for NDB Cluster
BitKeeper/deleted/.del-init_rm.c~47230fcd35059112:
  Delete: ndb/tools/init_rm/init_rm.c
ndb/examples/Makefile:
  Add target for clean_dep
ndb/src/Makefile:
  Remove env dir
ndb/test/ndbapi/Makefile:
  Remove some old stuff
ndb/test/ndbapi/flexAsynch/Makefile:
  Cleanup
ndb/test/ndbapi/flexBench/Makefile:
  Cleanup
ndb/test/ndbapi/flexTT/Makefile:
  Cleanup
ndb/test/odbc/Makefile:
  Don't compile test dm-unixodb for now
ndb/tools/Makefile:
  Remove init_rm tool
2004-04-14 11:55:14 +02:00

27 lines
498 B
Makefile

-include .defs.mk
#ifneq ($(C++),)
#OPTS = CC=$(CC) CXX=$(C++)
#endif
# XXX ndbapi_example4 commented out until fixed
BIN_DIRS := ndbapi_example1 ndbapi_example2 ndbapi_example3 $(ndbapi_example4) \
ndbapi_example5 select_all
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