Loading Noto/Interfaces/NotoActiveSurface/ChangeLog 0 → 100644 +1 −0 Original line number Diff line number Diff line "@(#) $Id$" Noto/Interfaces/NotoActiveSurface/config/CDB/schemas/NotoActiveSurfaceBoss.xsd 0 → 100644 +43 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="ISO-8859-1"?> <!-- - $Id: NotoActiveSurfaceBoss.xsd,v 1.1 2009-05-21 15:32:47 c.migoni Exp $ - Author: Carlo Migoni - - History: - 04-03-2009 Created --> <xs:schema targetNamespace="urn:schemas-cosylab-com:NotoActiveSurfaceBoss:1.0" xmlns="urn:schemas-cosylab-com:NotoActiveSurfaceBoss:1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:cdb="urn:schemas-cosylab-com:CDB:1.0" xmlns:baci="urn:schemas-cosylab-com:BACI:1.0" xmlns:mng="urn:schemas-cosylab-com:Managment:1.0" xmlns:as="urn:schemas-cosylab-com:ActiveSurface:1.0" elementFormDefault="qualified" attributeFormDefault="unqualified"> <xs:import namespace="urn:schemas-cosylab-com:CDB:1.0" schemaLocation="CDB.xsd"/> <xs:import namespace="urn:schemas-cosylab-com:BACI:1.0" schemaLocation="BACI.xsd"/> <xs:import namespace="urn:schemas-cosylab-com:Managment:1.0" schemaLocation="Managment.xsd"/> <xs:import namespace="urn:schemas-cosylab-com:ActiveSurface:1.0" schemaLocation="ActiveSurface.xsd"/> <xs:complexType name="NotoActiveSurfaceBossType"> <xs:sequence> <xs:element name="status" type="mng:SystemStatusType" /> <xs:element name="enabled" type="mng:BooleanType" /> <xs:element name="pprofile" type="as:ActiveSurfaceProfileType" /> <xs:element name="tracking" type="mng:BooleanType" /> </xs:sequence> <xs:attribute name="IPAddress" type="xs:string" use="required" /> <xs:attribute name="Port" type="xs:unsignedShort" use="required" /> <!-- sleep time of the watching thread (microseconds), this is the thread that keeps data up to date --> <xs:attribute name="WatchingThreadTime" type="xs:unsignedLong" use="required" /> <!-- sleep time of the working thread (microseconds), this is the thread that keeps data up to date --> <xs:attribute name="WorkingThreadTime" type="xs:unsignedLong" use="required" /> <xs:attribute name="profile" type="xs:unsignedByte" use="required" /> </xs:complexType> <xs:element name="NotoActiveSurfaceBoss" type="NotoActiveSurfaceBossType"/> </xs:schema> Noto/Interfaces/NotoActiveSurface/src/Configuration.cpp 0 → 100644 +60 −0 Original line number Diff line number Diff line // $Id: Configuration.cpp,v 1.2 2011-05-12 14:14:31 a.orlati Exp $ #include "Configuration.h" #define _GET_DWORD_ATTRIBUTE(ATTRIB,DESCR,FIELD) { \ DWORD tmpw; \ if (!CIRATools::getDBValue(Services,ATTRIB,tmpw)) { \ _EXCPT(ComponentErrors::CDBAccessExImpl,dummy,"CConfiguration::Init()"); \ dummy.setFieldName(ATTRIB); \ throw dummy; \ } \ else { \ FIELD=tmpw; \ ACS_DEBUG_PARAM("CConfiguration::Init()",DESCR" %lu",tmpw); \ } \ } #define _GET_STRING_ATTRIBUTE(ATTRIB,DESCR,FIELD) { \ CString tmps; \ if (!CIRATools::getDBValue(Services,ATTRIB,tmps)) { \ _EXCPT(ComponentErrors::CDBAccessExImpl,dummy,"::CConfiguration::Init()"); \ dummy.setFieldName(ATTRIB); \ throw dummy; \ } \ else { \ FIELD=tmps; \ ACS_DEBUG_PARAM("CConfiguration::Init()",DESCR" %s",(const char*)tmps); \ } \ } CConfiguration::CConfiguration() { } CConfiguration::~CConfiguration() { } void CConfiguration::init(maci::ContainerServices *Services) throw (ComponentErrors::CDBAccessExImpl,ComponentErrors::MemoryAllocationExImpl,ComponentErrors::IRALibraryResourceExImpl) { _GET_STRING_ATTRIBUTE("IPAddress","TCP/IP address is: ",m_sAddress); _GET_DWORD_ATTRIBUTE("Port","Port is: ",m_wPort); _GET_DWORD_ATTRIBUTE("CommandLineTimeout","Time out of the command line is (uSec): ",m_dwCommandLineTimeout); _GET_DWORD_ATTRIBUTE("ConnectTimeout","Time out of the command line connection is (uSec): ",m_dwConnectTimeout); _GET_DWORD_ATTRIBUTE("PropertyRefreshTime","The property refresh time is (microseconds): ",m_dwPropertyRefreshTime); _GET_STRING_ATTRIBUTE("Configuration","Backend configuration is: ",m_sConfig); _GET_DWORD_ATTRIBUTE("TimeTollerance","The time tollerance is (microseconds): ",m_dwTimeTollerance); _GET_DWORD_ATTRIBUTE("RepetitionCacheTime","Log repetition filter cache time (uSec)",m_dwRepetitionCacheTime); _GET_DWORD_ATTRIBUTE("RepetitionExpireTime","Log repetition filter expire time (uSec)",m_dwRepetitionExpireTime); _GET_DWORD_ATTRIBUTE("DataPort","Port of data line is: ",m_wDataPort); _GET_STRING_ATTRIBUTE("DataIPAddress","Data line TCP/IP address is: ", m_sDataAddress); _GET_DWORD_ATTRIBUTE("DataLatency","The latency of the backend data line is (uSec)",m_dwDataLatency); _GET_DWORD_ATTRIBUTE("SenderSleepTime","The sender thread sleep time is (uSec)",m_dwSenderSleepTime); _GET_DWORD_ATTRIBUTE("SenderResponseTime","The sender thread response time is (uSec)",m_dwSenderResponseTime); _GET_DWORD_ATTRIBUTE("ControlSleepTime","The control thread sleep time is (uSec)",m_dwControlSleepTime); _GET_DWORD_ATTRIBUTE("ControlResponseTime","The control thread response time is (uSec)",m_dwControlResponseTime); _GET_DWORD_ATTRIBUTE("BoardsNumber","The number of installed boards is ",m_dwBoardsNumber); _GET_DWORD_ATTRIBUTE("DataBufferSize","Size of data packet is (bytes)",m_dwDataBufferSize); } Noto/Interfaces/NotoActiveSurface/src/Makefile 0 → 100644 +233 −0 Original line number Diff line number Diff line #******************************************************************************* # PPPPPPPP # # "@(#) $Id: Makefile,v 1.3 2010-07-26 12:37:07 c.migoni Exp $" # # Makefile of ........ # # who when what # -------- -------- ---------------------------------------------- # Carlo Migoni 10/05/07 created # #******************************************************************************* # This Makefile follows VLT Standards (see Makefile(5) for more). #******************************************************************************* # REMARKS # None #------------------------------------------------------------------------ # # user definable C-compilation flags #USER_CFLAGS = # # additional include and library search paths #USER_INC = -I/usr/local/include/gsl USER_INC = USER_LIB = -lACE \ -lTAO \ -lTAO_DsLogAdmin \ -lTAO_CosNaming \ -lTAO_IORTable \ -lTAO_PortableServer \ -lTAO_Svc_Utils \ -lTAO_CosTrading \ -lTAO_CosNotification \ -lTAO_DynamicAny \ -lTAO_IFR_Client \ -lTAO_CosProperty \ -lacsutil \ -lcdb \ -llogging \ -lacscomponent \ -lbaci \ -lmaci \ -lmaciClient \ -lacserr \ -lm \ -lloki \ -lncurses # -lgsl \ # -lgslcblas # # MODULE CODE DESCRIPTION: # ------------------------ # As a general rule: public file are "cleaned" and "installed" # local (_L) are not "installed". # # C programs (public and local) # ----------------------------- EXECUTABLES = #EXECUTABLES_L = TestClient # # <brief description of xxxxx program> #TestClient_OBJECTS = TestClient #TestClient_LIBS = NotoActiveSurfaceBossImpl IRALibrary lanStubs usdStubs ASErrors ComponentErrors ClientErrors ManagementErrors # # special compilation flags for single c sources #yyyyy_CFLAGS = # # Includes (.h) files (public only) # --------------------------------- INCLUDES = # # Libraries (public and local) # ---------------------------- LIBRARIES = NotoActiveSurfaceBossImpl LIBRARIES_L = # # <brief description of lllll library> #NotoActiveSurfaceBossImpl_OBJECTS = NotoActiveSurfaceBossImpl NotoActiveSurfaceBossCore NotoActiveSurfaceBossWatchingThread NotoActiveSurfaceBossWorkingThread NotoActiveSurfaceBossSector1Thread NotoActiveSurfaceBossSector2Thread NotoActiveSurfaceBossSector3Thread NotoActiveSurfaceBossSector4Thread NotoActiveSurfaceBossSector5Thread NotoActiveSurfaceBossSector6Thread NotoActiveSurfaceBossSector7Thread NotoActiveSurfaceBossSector8Thread #NotoActiveSurfaceBossImpl_LIBS = lanStubs usdStubs ActiveSurfaceBossStubs NotoActiveSurfaceBossStubs AntennaDefinitionsStubs ManagmentDefinitionsStubs AntennaBossStubs ComponentErrors ASErrors ManagementErrors AntennaErrors IRALibrary ParserErrors NotoActiveSurfaceBossImpl_OBJECTS = NotoActiveSurfaceBossImpl Configuration NotoActiveSurfaceBossCore NotoActiveSurfaceBossWatchingThread NotoActiveSurfaceBossWorkingThread NotoActiveSurfaceBossImpl_LIBS = ActiveSurfaceBossStubs NotoActiveSurfaceBossStubs AntennaDefinitionsStubs ManagmentDefinitionsStubs AntennaBossStubs ComponentErrors ASErrors ManagementErrors AntennaErrors IRALibrary ParserErrors # # Scripts (public and local) # ---------------------------- SCRIPTS = SCRIPTS_L = # # TCL scripts (public and local) # ------------------------------ TCL_SCRIPTS = TCL_SCRIPTS_L = # # Python stuff (public and local) # ---------------------------- PY_SCRIPTS = PY_SCRIPTS_L = PY_MODULES = PY_MODULES_L = PY_PACKAGES = PY_PACKAGES_L = pppppp_MODULES = # # <brief description of tttttt tcl-script> tttttt_OBJECTS = tttttt_TCLSH = tttttt_LIBS = # # TCL libraries (public and local) # ------------------------------ TCL_LIBRARIES = TCL_LIBRARIES_L = # # <brief description of tttlll library> tttlll_OBJECTS = # # Configuration Database Files # ---------------------------- CDB_SCHEMAS = NotoActiveSurfaceBoss # # IDL Files and flags # IDL_FILES = IDL_TAO_FLAGS = USER_IDL = # # Jarfiles and their directories # JARFILES= jjj_DIRS= jjj_EXTRAS= # # java sources in Jarfile on/off DEBUG= # # ACS XmlIdl generation on/off # XML_IDL= # # Java Component Helper Classes generation on/off # COMPONENT_HELPERS= # # Java Entity Classes generation on/off # XSDBIND= # # Schema Config files for the above # XSDBIND_INCLUDE= # man pages to be done # -------------------- MANSECTIONS = MAN1 = MAN3 = MAN5 = MAN7 = MAN8 = # # local man pages # --------------- MANl = # # ASCII file to be converted into Framemaker-MIF # -------------------- ASCII_TO_MIF = # # other files to be installed #---------------------------- INSTALL_FILES = # # list of all possible C-sources (used to create automatic dependencies) # ------------------------------ CSOURCENAMES = \ $(foreach exe, $(EXECUTABLES) $(EXECUTABLES_L), $($(exe)_OBJECTS)) \ $(foreach rtos, $(RTAI_MODULES) , $($(rtos)_OBJECTS)) \ $(foreach lib, $(LIBRARIES) $(LIBRARIES_L), $($(lib)_OBJECTS)) # #>>>>> END OF standard rules # # INCLUDE STANDARDS # ----------------- MAKEDIRTMP := $(shell searchFile include/acsMakefile) ifneq ($(MAKEDIRTMP),\#error\#) MAKEDIR := $(MAKEDIRTMP)/include include $(MAKEDIR)/acsMakefile endif # # TARGETS # ------- all: do_all @echo " . . . 'all' done" clean : clean_all @echo " . . . clean done" clean_dist : clean_all clean_dist_all @echo " . . . clean_dist done" man : do_man @echo " . . . man page(s) done" install : install_all @echo " . . . installation done" #___oOo___ Noto/Interfaces/NotoActiveSurface/src/NotoActiveSurfaceBossCore.cpp 0 → 100644 +2034 −0 File added.Preview size limit exceeded, changes collapsed. Show changes Loading
Noto/Interfaces/NotoActiveSurface/ChangeLog 0 → 100644 +1 −0 Original line number Diff line number Diff line "@(#) $Id$"
Noto/Interfaces/NotoActiveSurface/config/CDB/schemas/NotoActiveSurfaceBoss.xsd 0 → 100644 +43 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="ISO-8859-1"?> <!-- - $Id: NotoActiveSurfaceBoss.xsd,v 1.1 2009-05-21 15:32:47 c.migoni Exp $ - Author: Carlo Migoni - - History: - 04-03-2009 Created --> <xs:schema targetNamespace="urn:schemas-cosylab-com:NotoActiveSurfaceBoss:1.0" xmlns="urn:schemas-cosylab-com:NotoActiveSurfaceBoss:1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:cdb="urn:schemas-cosylab-com:CDB:1.0" xmlns:baci="urn:schemas-cosylab-com:BACI:1.0" xmlns:mng="urn:schemas-cosylab-com:Managment:1.0" xmlns:as="urn:schemas-cosylab-com:ActiveSurface:1.0" elementFormDefault="qualified" attributeFormDefault="unqualified"> <xs:import namespace="urn:schemas-cosylab-com:CDB:1.0" schemaLocation="CDB.xsd"/> <xs:import namespace="urn:schemas-cosylab-com:BACI:1.0" schemaLocation="BACI.xsd"/> <xs:import namespace="urn:schemas-cosylab-com:Managment:1.0" schemaLocation="Managment.xsd"/> <xs:import namespace="urn:schemas-cosylab-com:ActiveSurface:1.0" schemaLocation="ActiveSurface.xsd"/> <xs:complexType name="NotoActiveSurfaceBossType"> <xs:sequence> <xs:element name="status" type="mng:SystemStatusType" /> <xs:element name="enabled" type="mng:BooleanType" /> <xs:element name="pprofile" type="as:ActiveSurfaceProfileType" /> <xs:element name="tracking" type="mng:BooleanType" /> </xs:sequence> <xs:attribute name="IPAddress" type="xs:string" use="required" /> <xs:attribute name="Port" type="xs:unsignedShort" use="required" /> <!-- sleep time of the watching thread (microseconds), this is the thread that keeps data up to date --> <xs:attribute name="WatchingThreadTime" type="xs:unsignedLong" use="required" /> <!-- sleep time of the working thread (microseconds), this is the thread that keeps data up to date --> <xs:attribute name="WorkingThreadTime" type="xs:unsignedLong" use="required" /> <xs:attribute name="profile" type="xs:unsignedByte" use="required" /> </xs:complexType> <xs:element name="NotoActiveSurfaceBoss" type="NotoActiveSurfaceBossType"/> </xs:schema>
Noto/Interfaces/NotoActiveSurface/src/Configuration.cpp 0 → 100644 +60 −0 Original line number Diff line number Diff line // $Id: Configuration.cpp,v 1.2 2011-05-12 14:14:31 a.orlati Exp $ #include "Configuration.h" #define _GET_DWORD_ATTRIBUTE(ATTRIB,DESCR,FIELD) { \ DWORD tmpw; \ if (!CIRATools::getDBValue(Services,ATTRIB,tmpw)) { \ _EXCPT(ComponentErrors::CDBAccessExImpl,dummy,"CConfiguration::Init()"); \ dummy.setFieldName(ATTRIB); \ throw dummy; \ } \ else { \ FIELD=tmpw; \ ACS_DEBUG_PARAM("CConfiguration::Init()",DESCR" %lu",tmpw); \ } \ } #define _GET_STRING_ATTRIBUTE(ATTRIB,DESCR,FIELD) { \ CString tmps; \ if (!CIRATools::getDBValue(Services,ATTRIB,tmps)) { \ _EXCPT(ComponentErrors::CDBAccessExImpl,dummy,"::CConfiguration::Init()"); \ dummy.setFieldName(ATTRIB); \ throw dummy; \ } \ else { \ FIELD=tmps; \ ACS_DEBUG_PARAM("CConfiguration::Init()",DESCR" %s",(const char*)tmps); \ } \ } CConfiguration::CConfiguration() { } CConfiguration::~CConfiguration() { } void CConfiguration::init(maci::ContainerServices *Services) throw (ComponentErrors::CDBAccessExImpl,ComponentErrors::MemoryAllocationExImpl,ComponentErrors::IRALibraryResourceExImpl) { _GET_STRING_ATTRIBUTE("IPAddress","TCP/IP address is: ",m_sAddress); _GET_DWORD_ATTRIBUTE("Port","Port is: ",m_wPort); _GET_DWORD_ATTRIBUTE("CommandLineTimeout","Time out of the command line is (uSec): ",m_dwCommandLineTimeout); _GET_DWORD_ATTRIBUTE("ConnectTimeout","Time out of the command line connection is (uSec): ",m_dwConnectTimeout); _GET_DWORD_ATTRIBUTE("PropertyRefreshTime","The property refresh time is (microseconds): ",m_dwPropertyRefreshTime); _GET_STRING_ATTRIBUTE("Configuration","Backend configuration is: ",m_sConfig); _GET_DWORD_ATTRIBUTE("TimeTollerance","The time tollerance is (microseconds): ",m_dwTimeTollerance); _GET_DWORD_ATTRIBUTE("RepetitionCacheTime","Log repetition filter cache time (uSec)",m_dwRepetitionCacheTime); _GET_DWORD_ATTRIBUTE("RepetitionExpireTime","Log repetition filter expire time (uSec)",m_dwRepetitionExpireTime); _GET_DWORD_ATTRIBUTE("DataPort","Port of data line is: ",m_wDataPort); _GET_STRING_ATTRIBUTE("DataIPAddress","Data line TCP/IP address is: ", m_sDataAddress); _GET_DWORD_ATTRIBUTE("DataLatency","The latency of the backend data line is (uSec)",m_dwDataLatency); _GET_DWORD_ATTRIBUTE("SenderSleepTime","The sender thread sleep time is (uSec)",m_dwSenderSleepTime); _GET_DWORD_ATTRIBUTE("SenderResponseTime","The sender thread response time is (uSec)",m_dwSenderResponseTime); _GET_DWORD_ATTRIBUTE("ControlSleepTime","The control thread sleep time is (uSec)",m_dwControlSleepTime); _GET_DWORD_ATTRIBUTE("ControlResponseTime","The control thread response time is (uSec)",m_dwControlResponseTime); _GET_DWORD_ATTRIBUTE("BoardsNumber","The number of installed boards is ",m_dwBoardsNumber); _GET_DWORD_ATTRIBUTE("DataBufferSize","Size of data packet is (bytes)",m_dwDataBufferSize); }
Noto/Interfaces/NotoActiveSurface/src/Makefile 0 → 100644 +233 −0 Original line number Diff line number Diff line #******************************************************************************* # PPPPPPPP # # "@(#) $Id: Makefile,v 1.3 2010-07-26 12:37:07 c.migoni Exp $" # # Makefile of ........ # # who when what # -------- -------- ---------------------------------------------- # Carlo Migoni 10/05/07 created # #******************************************************************************* # This Makefile follows VLT Standards (see Makefile(5) for more). #******************************************************************************* # REMARKS # None #------------------------------------------------------------------------ # # user definable C-compilation flags #USER_CFLAGS = # # additional include and library search paths #USER_INC = -I/usr/local/include/gsl USER_INC = USER_LIB = -lACE \ -lTAO \ -lTAO_DsLogAdmin \ -lTAO_CosNaming \ -lTAO_IORTable \ -lTAO_PortableServer \ -lTAO_Svc_Utils \ -lTAO_CosTrading \ -lTAO_CosNotification \ -lTAO_DynamicAny \ -lTAO_IFR_Client \ -lTAO_CosProperty \ -lacsutil \ -lcdb \ -llogging \ -lacscomponent \ -lbaci \ -lmaci \ -lmaciClient \ -lacserr \ -lm \ -lloki \ -lncurses # -lgsl \ # -lgslcblas # # MODULE CODE DESCRIPTION: # ------------------------ # As a general rule: public file are "cleaned" and "installed" # local (_L) are not "installed". # # C programs (public and local) # ----------------------------- EXECUTABLES = #EXECUTABLES_L = TestClient # # <brief description of xxxxx program> #TestClient_OBJECTS = TestClient #TestClient_LIBS = NotoActiveSurfaceBossImpl IRALibrary lanStubs usdStubs ASErrors ComponentErrors ClientErrors ManagementErrors # # special compilation flags for single c sources #yyyyy_CFLAGS = # # Includes (.h) files (public only) # --------------------------------- INCLUDES = # # Libraries (public and local) # ---------------------------- LIBRARIES = NotoActiveSurfaceBossImpl LIBRARIES_L = # # <brief description of lllll library> #NotoActiveSurfaceBossImpl_OBJECTS = NotoActiveSurfaceBossImpl NotoActiveSurfaceBossCore NotoActiveSurfaceBossWatchingThread NotoActiveSurfaceBossWorkingThread NotoActiveSurfaceBossSector1Thread NotoActiveSurfaceBossSector2Thread NotoActiveSurfaceBossSector3Thread NotoActiveSurfaceBossSector4Thread NotoActiveSurfaceBossSector5Thread NotoActiveSurfaceBossSector6Thread NotoActiveSurfaceBossSector7Thread NotoActiveSurfaceBossSector8Thread #NotoActiveSurfaceBossImpl_LIBS = lanStubs usdStubs ActiveSurfaceBossStubs NotoActiveSurfaceBossStubs AntennaDefinitionsStubs ManagmentDefinitionsStubs AntennaBossStubs ComponentErrors ASErrors ManagementErrors AntennaErrors IRALibrary ParserErrors NotoActiveSurfaceBossImpl_OBJECTS = NotoActiveSurfaceBossImpl Configuration NotoActiveSurfaceBossCore NotoActiveSurfaceBossWatchingThread NotoActiveSurfaceBossWorkingThread NotoActiveSurfaceBossImpl_LIBS = ActiveSurfaceBossStubs NotoActiveSurfaceBossStubs AntennaDefinitionsStubs ManagmentDefinitionsStubs AntennaBossStubs ComponentErrors ASErrors ManagementErrors AntennaErrors IRALibrary ParserErrors # # Scripts (public and local) # ---------------------------- SCRIPTS = SCRIPTS_L = # # TCL scripts (public and local) # ------------------------------ TCL_SCRIPTS = TCL_SCRIPTS_L = # # Python stuff (public and local) # ---------------------------- PY_SCRIPTS = PY_SCRIPTS_L = PY_MODULES = PY_MODULES_L = PY_PACKAGES = PY_PACKAGES_L = pppppp_MODULES = # # <brief description of tttttt tcl-script> tttttt_OBJECTS = tttttt_TCLSH = tttttt_LIBS = # # TCL libraries (public and local) # ------------------------------ TCL_LIBRARIES = TCL_LIBRARIES_L = # # <brief description of tttlll library> tttlll_OBJECTS = # # Configuration Database Files # ---------------------------- CDB_SCHEMAS = NotoActiveSurfaceBoss # # IDL Files and flags # IDL_FILES = IDL_TAO_FLAGS = USER_IDL = # # Jarfiles and their directories # JARFILES= jjj_DIRS= jjj_EXTRAS= # # java sources in Jarfile on/off DEBUG= # # ACS XmlIdl generation on/off # XML_IDL= # # Java Component Helper Classes generation on/off # COMPONENT_HELPERS= # # Java Entity Classes generation on/off # XSDBIND= # # Schema Config files for the above # XSDBIND_INCLUDE= # man pages to be done # -------------------- MANSECTIONS = MAN1 = MAN3 = MAN5 = MAN7 = MAN8 = # # local man pages # --------------- MANl = # # ASCII file to be converted into Framemaker-MIF # -------------------- ASCII_TO_MIF = # # other files to be installed #---------------------------- INSTALL_FILES = # # list of all possible C-sources (used to create automatic dependencies) # ------------------------------ CSOURCENAMES = \ $(foreach exe, $(EXECUTABLES) $(EXECUTABLES_L), $($(exe)_OBJECTS)) \ $(foreach rtos, $(RTAI_MODULES) , $($(rtos)_OBJECTS)) \ $(foreach lib, $(LIBRARIES) $(LIBRARIES_L), $($(lib)_OBJECTS)) # #>>>>> END OF standard rules # # INCLUDE STANDARDS # ----------------- MAKEDIRTMP := $(shell searchFile include/acsMakefile) ifneq ($(MAKEDIRTMP),\#error\#) MAKEDIR := $(MAKEDIRTMP)/include include $(MAKEDIR)/acsMakefile endif # # TARGETS # ------- all: do_all @echo " . . . 'all' done" clean : clean_all @echo " . . . clean done" clean_dist : clean_all clean_dist_all @echo " . . . clean_dist done" man : do_man @echo " . . . man page(s) done" install : install_all @echo " . . . installation done" #___oOo___
Noto/Interfaces/NotoActiveSurface/src/NotoActiveSurfaceBossCore.cpp 0 → 100644 +2034 −0 File added.Preview size limit exceeded, changes collapsed. Show changes