mariadb/ndb/examples/Makefile

28 lines
498 B
Makefile
Raw Normal View History

2004-04-14 10:53:21 +02:00
-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
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