* src/dynlib/2nd/Makefile
* src/dynlib/Makefile
* config/none.mk
* config/dyn.mk
% Dropped DYNNAME. Now using DYNNAME2 only.
% Dropped HB_DYNLIB_NAME*. Now using HB_DYNLIB_BASE* only.
; TODO: Rename DYNNAME2 to DYNNAME, rename HB_DYNLIB_BASE* to HB_DYNLIB_NAME*.
27 lines
452 B
Makefile
27 lines
452 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
include $(TOP)$(ROOT)config/global.mk
|
|
|
|
ifneq ($(HB_PLATFORM),)
|
|
ifneq ($(HB_COMPILER),)
|
|
|
|
ifneq ($(LIBNAME),)
|
|
DIR_RULE := @$(ECHO) $(ECHOQUOTE)! '$(LIBNAME)' library skipped $(if $(HB_SKIP_REASON),($(HB_SKIP_REASON)),)$(ECHOQUOTE)
|
|
else
|
|
ifneq ($(DYNNAME2),)
|
|
DIR_RULE := @$(ECHO) $(ECHOQUOTE)! '$(DYNNAME2)' dynamic library skipped$(ECHOQUOTE)
|
|
else
|
|
DIR_RULE :=
|
|
endif
|
|
endif
|
|
|
|
all : first
|
|
|
|
first clean install::
|
|
$(DIR_RULE)
|
|
|
|
endif
|
|
endif
|