Still working toward beta12
This commit is contained in:
@@ -17,6 +17,7 @@ USR_INCLUDES += -I$(SHARE)/include
|
||||
SHARE_BIN = $(SHARE)/bin/$(T_A)
|
||||
endif
|
||||
|
||||
#Following only works if host provides soft links
|
||||
ifdef MASTER_IOCAPPS
|
||||
USR_INCLUDES += -I$(MASTER_IOCAPPS)/include
|
||||
MASTER_IOCAPPS_BIN = $(MASTER_IOCAPPS)/bin/$(T_A)
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
#RULES.ioc
|
||||
include $(EPICS_BASE)/config/RULES_DIRS
|
||||
buildInstall:: cdcmds
|
||||
buildInstall:: cdCommands
|
||||
|
||||
cdcmds: Makefile
|
||||
$(PERL) $(TOP)/config/makeIoccdcmds.pl $(ARCH)
|
||||
cdCommands: Makefile
|
||||
$(PERL) $(TOP)/config/makeIocCdCommands.pl $(ARCH)
|
||||
|
||||
clean::
|
||||
@$(RM) cdcmds
|
||||
@$(RM) cdCommands
|
||||
|
||||
+3
-3
@@ -1,5 +1,5 @@
|
||||
eval 'exec perl -S $0 ${1+"$@"}' # -*- Mode: perl -*-
|
||||
if $running_under_some_shell; # makeIoccdcmds.pl
|
||||
if $running_under_some_shell; # makeIocCdCommands.pl
|
||||
|
||||
use Cwd;
|
||||
|
||||
@@ -8,8 +8,8 @@ $cwd = cwd();
|
||||
$cwd =~ s|/tmp_mnt||;
|
||||
$arch = $ARGV[0];
|
||||
|
||||
unlink("cdcmds");
|
||||
open(OUT,">cdcmds") or die "$! opening cdcmds";
|
||||
unlink("cdCommands");
|
||||
open(OUT,">cdCommands") or die "$! opening cdCommands";
|
||||
print OUT "startup = \"$cwd\"\n";
|
||||
$appbin = $cwd;
|
||||
$appbin =~ s/iocBoot.*//;
|
||||
@@ -4,6 +4,11 @@ include $(TOP)/config/CONFIG_APP
|
||||
#----------------------------------------
|
||||
# ADD MACRO DEFINITIONS AFTER THIS LINE
|
||||
|
||||
USER_DBDFLAGS += -I .. -I $(EPICS_BASE)/dbd
|
||||
RECTYPES += xxxRecord.h
|
||||
DBDEXPAND = exampleInclude.dbd
|
||||
DBDNAME = exampleApp.dbd
|
||||
|
||||
#USR_CFLAGS +=
|
||||
PROD_LIBS += ca
|
||||
PROD_LIBS += Db
|
||||
|
||||
@@ -4,10 +4,6 @@ include $(TOP)/config/CONFIG_APP
|
||||
#----------------------------------------
|
||||
# ADD MACRO DEFINITIONS AFTER THIS LINE
|
||||
|
||||
USER_DBDFLAGS += -I .. -I $(EPICS_BASE)/dbd
|
||||
RECTYPES += xxxRecord.h
|
||||
DBDEXPAND = exampleInclude.dbd
|
||||
DBDNAME = exampleApp.dbd
|
||||
SRCS.c += ../xxxRecord.c
|
||||
SRCS.c += ../devXxxSoft.c
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# Following must be added for many board support packages
|
||||
#cd <full path to target bin directory>
|
||||
|
||||
< cdcmds
|
||||
< cdCommands
|
||||
|
||||
#< nfsCommands
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
#Following must be added for many board support packages
|
||||
#cd <full path to target bin directory>
|
||||
|
||||
< cdcmds
|
||||
< cdCommands
|
||||
|
||||
#< nfsCommands
|
||||
|
||||
|
||||
Reference in New Issue
Block a user