fbda9f3280
Replaced $Id$ and $Header$ keywords with $Revision-Id$ Deleted $Log$ keywords and any log messages
31 lines
610 B
Plaintext
31 lines
610 B
Plaintext
# $Revision-Id$
|
|
|
|
ifdef T_A
|
|
ifeq ($(findstring Host,$(VALID_BUILDS)),Host)
|
|
|
|
INSTALL_IDL = $(INSTALL_LOCATION)/idllib
|
|
DIRECTORY_TARGETS += $(INSTALL_IDL)
|
|
|
|
ifneq ($(strip $(IDLS_$(OS_CLASS))),)
|
|
IDLS += $(subst -nil-,,$(IDLS_$(OS_CLASS)))
|
|
else
|
|
ifdef IDLS_DEFAULT
|
|
IDLS += $(IDLS_DEFAULT)
|
|
endif
|
|
endif
|
|
|
|
INSTALL_IDLS =$(IDLS:%=$(INSTALL_IDL)/%)
|
|
|
|
buildInstall : $(INSTALL_IDLS)
|
|
|
|
$(INSTALL_IDL)/%: %
|
|
@echo "Installing idl program $@"
|
|
@$(INSTALL_IDLFILE) -d -m 644 $< $(INSTALL_IDL)
|
|
|
|
$(INSTALL_IDL)/%: ../%
|
|
@echo "Installing idl program $@"
|
|
@$(INSTALL_IDLFILE) -d -m 644 $< $(INSTALL_IDL)
|
|
|
|
endif
|
|
endif
|