hi all,
just played around with makefiles. Goal was to get "d" into name of
debug lib.
Simple hack will do the work
change in makemake.bat this line :
echo cd lib ^&^& $(MAKE) BIN_DIR=debug all example_setup >> Makefile
to
echo cd lib ^&^& $(MAKE) LIB_BASE=mysqlppd BIN_DIR=debug all
example_setup >> Makefile
while playing around i noticed examples/makefile.vc of examples is not
on state to lib/makefile.vc
LibName is no var ( like mysql path, too) in examples. So if a user
changes var in lib/makefile.vc adaption of examples isn't done in same
way ( which is a k.o for my hack, else hack would do it work fine with
examples ,too ).
this message is just for information ;)