Hi Maurilio,

Hi Viktor,

sorry, not enough, it still dies :(

Thank you for the feedback.

Another idea is to iterate through DYNDIRLIST variable
items and pick filelist via 'for' (rather than using
already assembled list by make internals) and do something
like this:

--- in config/os2/gcc.mk [ typed without running it ]
define dyn_objects
for %f in ( $(TOP)$(ROOT)$(dir)/$(OBJ_DIR)/*$(OBJ_DYN_PREFIX)$ (OBJ_EXT) ) do @$(ECHO) $(ECHOQUOTE)INPUT(%f)$(ECHOQUOTE) >> __dyn__.tmp
endef
define create_dynlib
   $(if $(wildcard __dyn__.tmp),@$(RM) __dyn__.tmp,)
   $(foreach dir,$(DYNDIRLIST),$(dyn_objects))
   $(DY) ...
endef
---

Brgds,
Viktor

_______________________________________________
Harbour mailing list
[email protected]
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to