41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
#
|
|
# Top Level EPICS Makefile
|
|
# by Matthew Needes and Mike Bordua
|
|
#
|
|
# Notes:
|
|
# The build, clean, install, and depends "commands" do not have
|
|
# their own dependency lists; they are instead handled by
|
|
# the build.%, clean.%, etc. dependencies.
|
|
#
|
|
# However, the release dependencies DOES require a complete
|
|
# install because the release.% syntax is illegal.
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
TOP=.
|
|
include $(TOP)/config/CONFIG_BASE
|
|
|
|
DIRS = src config
|
|
|
|
#
|
|
# this bootstraps in makeMakefile.pl (and others) so that it can
|
|
# be used to create the first O.xxxx/Makefile
|
|
#
|
|
PERL_BOOTSTRAP_SCRIPTS = $(notdir $(wildcard $(TOP)/src/tools/*.pl))
|
|
PERL_BOOTSTRAP_SCRIPTS_INSTALL = $(PERL_BOOTSTRAP_SCRIPTS:%=$(INSTALL_BIN)/%)
|
|
all host cross inc rebuild uninstall clean depends buildInstall :: $(PERL_BOOTSTRAP_SCRIPTS_INSTALL)
|
|
|
|
include $(TOP)/config/RULES_TOP
|
|
|
|
release:
|
|
@echo TOP: Creating Release...
|
|
@./MakeRelease
|
|
|
|
built_release:
|
|
@echo TOP: Creating Fully Built Release...
|
|
@./MakeRelease -b $(INSTALL_LOCATION)
|
|
|
|
$(INSTALL_BIN)/%.pl: $(TOP)/src/tools/%.pl
|
|
$(PERL) $(TOP)/src/tools/installEpics.pl -d -m 555 $< $(INSTALL_BIN)
|