20 lines
379 B
Plaintext
20 lines
379 B
Plaintext
#RULES.ioc
|
|
include $(CONFIG)/RULES_DIRS
|
|
|
|
build: buildInstall
|
|
install: buildInstall
|
|
|
|
buildInstall: $(TARGETS)
|
|
|
|
cdCommands: $(wildcard $(TOP)/configure/RELEASE*) $(TOP)/configure/CONFIG
|
|
@$(RM) $@
|
|
ifeq ($(IOCS_APPL_TOP),)
|
|
$(PERL) $(TOOLS)/convertRelease.pl -a $(ARCH) $@
|
|
else
|
|
$(PERL) $(TOOLS)/convertRelease.pl -a $(ARCH) -t $(IOCS_APPL_TOP) $@
|
|
endif
|
|
|
|
clean:
|
|
@$(RM) cdCommands
|
|
|