Removed the -h option to convertRelease, use $ENV{EPICS_HOST_ARCH} instead.
Reworked variables associated with expandVars to make it simpler to use.
Split EPICS::Utils module into three parts.
Moved code from fullPathName.pl into the new EPICS::Path module.
Changed convertRelease.pl to use new modules.
Added some documentation to RELEASE_NOTES.html
44 lines
1.3 KiB
Makefile
44 lines
1.3 KiB
Makefile
#*************************************************************************
|
|
# Copyright (c) 2008 UChicago Argonne LLC, as Operator of Argonne
|
|
# National Laboratory.
|
|
# EPICS BASE is distributed subject to a Software License Agreement found
|
|
# in file LICENSE that is included with this distribution.
|
|
#*************************************************************************
|
|
TOP=../..
|
|
|
|
include $(TOP)/configure/CONFIG
|
|
|
|
# Bootstrap resolution: tools not installed yet
|
|
TOOLS = $(TOP)/src/tools
|
|
|
|
# Bootstrap resolution: expandVars.pl needs to be run on itself!
|
|
EXPAND_TOOL = $(PERL) $(TOOLS)/expandVars.pl@
|
|
|
|
EXPAND += convertRelease.pl@
|
|
EXPAND += expandVars.pl@
|
|
EXPAND += fullPathName.pl@
|
|
|
|
PERL_MODULES += EPICS/Copy.pm
|
|
PERL_MODULES += EPICS/Path.pm
|
|
PERL_MODULES += EPICS/Release.pm
|
|
PERL_MODULES += EPICS/Getopts.pm
|
|
|
|
PERL_SCRIPTS += convertRelease.pl
|
|
PERL_SCRIPTS += cvsclean.pl
|
|
PERL_SCRIPTS += dos2unix.pl
|
|
PERL_SCRIPTS += expandVars.pl
|
|
PERL_SCRIPTS += filterWarnings.pl
|
|
PERL_SCRIPTS += fullPathName.pl
|
|
PERL_SCRIPTS += installEpics.pl
|
|
PERL_SCRIPTS += makeDbDepends.pl
|
|
PERL_SCRIPTS += makeIncludeDbd.pl
|
|
PERL_SCRIPTS += makeMakefile.pl
|
|
PERL_SCRIPTS += makeMakefileInclude.pl
|
|
PERL_SCRIPTS += mkmf.pl
|
|
PERL_SCRIPTS += munch.pl
|
|
PERL_SCRIPTS += replaceVAR.pl
|
|
PERL_SCRIPTS += useManifestTool.pl
|
|
|
|
include $(TOP)/configure/RULES
|
|
|