19 lines
355 B
Plaintext
19 lines
355 B
Plaintext
#RULES.ioc
|
|
include $(EPICS_BASE)/configure/RULES_DIRS
|
|
|
|
build: buildInstall
|
|
install: buildInstall
|
|
|
|
buildInstall: $(TARGETS)
|
|
|
|
cdCommands: $(wildcard $(TOP)/config/RELEASE*)
|
|
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
|
|
|