forked from epics-modules/mrfioc2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Eric Bjorklund
committed
Jan 12, 2010
1 parent
b6a9107
commit 028c02d
Showing
6 changed files
with
76 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
TOP=../.. | ||
include $(TOP)/configure/CONFIG | ||
#---------------------------------------- | ||
# ADD MACRO DEFINITIONS AFTER THIS LINE | ||
|
||
#---------------------------------------------------- | ||
# Optimization of db files using dbst (DEFAULT: NO) | ||
#DB_OPT = YES | ||
|
||
#---------------------------------------------------- | ||
# Create and install (or just install) into <top>/db | ||
# databases, templates, substitutions like this | ||
#DB += xxx.db | ||
|
||
#---------------------------------------------------- | ||
# If <anyname>.db template is not named <anyname>*.template add | ||
# <anyname>_template = <templatename> | ||
|
||
include $(TOP)/configure/RULES | ||
#---------------------------------------- | ||
# ADD RULES AFTER THIS LINE | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
TOP = .. | ||
include $(TOP)/configure/CONFIG | ||
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *src*)) | ||
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *Src*)) | ||
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *db*)) | ||
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *Db*)) | ||
include $(TOP)/configure/RULES_DIRS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
TOP=../.. | ||
|
||
include $(TOP)/configure/CONFIG | ||
#---------------------------------------- | ||
# ADD MACRO DEFINITIONS AFTER THIS LINE | ||
#============================= | ||
|
||
#================================================== | ||
# build a support library | ||
|
||
LIBRARY_IOC += evgBasicSequence | ||
|
||
# xxxRecord.h will be created from xxxRecord.dbd | ||
#DBDINC += xxxRecord | ||
# install evgBasicSequence.dbd into <top>/dbd | ||
DBD += evgBasicSequence.dbd | ||
|
||
# specify all source files to be compiled and added to the library | ||
#evgBasicSequence_SRCS += xxx | ||
|
||
evgBasicSequence_LIBS += $(EPICS_BASE_IOC_LIBS) | ||
|
||
#================================================== | ||
# Install all protocol files in the data directory | ||
|
||
DATA += $(patsubst ../%, %, $(wildcard ../*.proto)) | ||
|
||
#=========================== | ||
|
||
include $(TOP)/configure/RULES | ||
#---------------------------------------- | ||
# ADD RULES AFTER THIS LINE | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# provide definitions such as | ||
#include "xxxRecord.dbd" | ||
#device(xxx,CONSTANT,devXxxSoft,"SoftChannel") | ||
#driver(myDriver) | ||
#registrar(myRegistrar) | ||
#variable(myVariable) |