From 4bd2ca9e1da2a0e736ad234ee6fb1c4fdb625ddb Mon Sep 17 00:00:00 2001 From: Marty Kraimer Date: Fri, 19 Jul 2002 19:22:17 +0000 Subject: [PATCH] Put helpful comments in Makefile --- src/makeBaseApp/top/simpleApp/src/Makefile | 68 ++++++++++++++++++++-- 1 file changed, 63 insertions(+), 5 deletions(-) diff --git a/src/makeBaseApp/top/simpleApp/src/Makefile b/src/makeBaseApp/top/simpleApp/src/Makefile index c5b2802b2..a5ac91cc8 100644 --- a/src/makeBaseApp/top/simpleApp/src/Makefile +++ b/src/makeBaseApp/top/simpleApp/src/Makefile @@ -4,12 +4,70 @@ include $(TOP)/configure/CONFIG #---------------------------------------- # ADD MACRO DEFINITIONS AFTER THIS LINE -#USR_CFLAGS += -PROD_LIBS += ca -PROD_LIBS += Db -PROD_LIBS += Com +#=======Create Host Programs======= +ca_DIR = $(EPICS_BASE_LIB) +Com_DIR = $(EPICS_BASE_LIB) + +#USR_CFLAGS += + +# For Each Host Product define the following:1 +#PROD_HOST = +#_SRCS += xxx.c +#... +#_LIBS += ca +#_LIBS += Com + +#========Database Products================ + +# xxxRecord.h will be created from xxxRecord.dbd +#DBDINC += xxxRecord + +#.dbd will be created from Include.dbd +#DBD += .dbd + +#=======Create an IOC program===== + +#PROD_IOC = + +#_SRCS += xxx.c # .cpp .stt etc +#... +#_registerRecordDeviceDriver.cpp will be created from .dbd +#_SRCS += _registerRecordDeviceDriver.cpp + +## If is to be built for both vxWorks and for the host then +#_SRCS_DEFAULT += Main.cpp +#_SRCS_vxWorks += -nil- + +#The following adds support from base/src/vxWorks +#_OBJS_vxWorks += $(EPICS_BASE_BIN)/vxComLibrary + +##Define all possible libraries +## Use win32 object libs for registered support +#_LIBS_win32 += recIocObj +#_LIBS_win32 += softDevIocObj +#_LIBS_win32 += testDevIocObj +#_LIBS_DEFAULT += recIoc +#_LIBS_DEFAULT += softDevIoc +#_LIBS_DEFAULT += testDevIoc + +#_LIBS += iocsh +#_LIBS += miscIoc +#_LIBS += rsrvIoc +#_LIBS += dbtoolsIoc +#_LIBS += asIoc +#_LIBS += dbIoc +#_LIBS += registryIoc +#_LIBS += dbStaticIoc +#_LIBS += ca +#_LIBS += Com + +## If sequence programs are being built +#_LIBS += seq +#_LIBS += pv +#seq_DIR = $(SNCSEQ_LIB) +#pv_DIR = $(SNCSEQ_LIB) + -#PROD_HOST = include $(TOP)/configure/RULES #----------------------------------------