In gnuwin32 is standard that a lib is installed as:
<path>\bin
\lib
\include
so I use HB_DIR_x/lib to prefix the libs for the link, HB_DIR_x/bin to
prefix the dlls and in every contrib makefile I have:
...
ifneq ($(HB_DIR_GD),)
HB_INC_GD = $(HB_DIR_GD)/include
endif
...
in this way I define only where I installed the lib using HB_DIR_x
It could be:
...
ifeq ($(HB_INC_GD),)
ifneq ($(HB_DIR_GD),)
HB_INC_GD = $(HB_DIR_GD)/include
endif
endif
...
Just an idea.
best regards,
Lorenzo
_______________________________________________
Harbour mailing list
[email protected]
http://lists.harbour-project.org/mailman/listinfo/harbour