mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
27 lines
498 B
Makefile
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
|
|
|