Minor changes to makeBaseApp templates
This commit is contained in:
@@ -1,8 +1,14 @@
|
||||
# Makefile at top of application tree
|
||||
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
|
||||
|
||||
# Directories to be built, in any order.
|
||||
# You can replace these wildcards with an explicit list
|
||||
DIRS += $(wildcard src* *Src*)
|
||||
DIRS += $(wildcard db* *Db*)
|
||||
|
||||
# If the build order matters, add dependency rules like this,
|
||||
# which specifies that xxxSrc must be built after src:
|
||||
#xxxSrc_DEPEND_DIRS += src
|
||||
|
||||
include $(TOP)/configure/RULES_DIRS
|
||||
|
||||
@@ -33,6 +33,6 @@ static long read_string(lsiRecord *prec)
|
||||
}
|
||||
|
||||
static lsidset dev_CSAFEAPPNAME_Version = {
|
||||
5, NULL, NULL, NULL, NULL, read_string
|
||||
{5, NULL, NULL, NULL, NULL}, read_string
|
||||
};
|
||||
epicsExportAddress(dset,dev_CSAFEAPPNAME_Version);
|
||||
|
||||
Reference in New Issue
Block a user