Rename pvDataApp to src, adjust Makefiles.
This commit is contained in:
4
Makefile
4
Makefile
@@ -5,10 +5,10 @@ include $(TOP)/configure/CONFIG
|
||||
|
||||
DIRS += configure
|
||||
|
||||
DIRS += pvDataApp
|
||||
DIRS += src
|
||||
pvDataApp_DEPEND_DIRS = configure
|
||||
|
||||
DIRS += testApp
|
||||
testApp_DEPEND_DIRS = pvDataApp
|
||||
testApp_DEPEND_DIRS = src
|
||||
|
||||
include $(TOP)/configure/RULES_TOP
|
||||
|
||||
@@ -1,21 +0,0 @@
|
||||
# Makefile for the pvData library
|
||||
|
||||
TOP = ..
|
||||
include $(TOP)/configure/CONFIG
|
||||
|
||||
PVDATAAPP = $(TOP)/pvDataApp
|
||||
|
||||
include $(PVDATAAPP)/misc/Makefile
|
||||
include $(PVDATAAPP)/pv/Makefile
|
||||
include $(PVDATAAPP)/factory/Makefile
|
||||
include $(PVDATAAPP)/property/Makefile
|
||||
include $(PVDATAAPP)/pvMisc/Makefile
|
||||
include $(PVDATAAPP)/monitor/Makefile
|
||||
|
||||
LIBRARY = pvData
|
||||
pvData_LIBS += Com
|
||||
|
||||
USR_CXXFLAGS_RTEMS = -D__rtems__
|
||||
|
||||
include $(TOP)/configure/RULES
|
||||
|
||||
21
src/Makefile
Normal file
21
src/Makefile
Normal file
@@ -0,0 +1,21 @@
|
||||
# Makefile for the pvData library
|
||||
|
||||
TOP = ..
|
||||
include $(TOP)/configure/CONFIG
|
||||
|
||||
PVDATASRC = $(TOP)/src
|
||||
|
||||
include $(PVDATASRC)/misc/Makefile
|
||||
include $(PVDATASRC)/pv/Makefile
|
||||
include $(PVDATASRC)/factory/Makefile
|
||||
include $(PVDATASRC)/property/Makefile
|
||||
include $(PVDATASRC)/pvMisc/Makefile
|
||||
include $(PVDATASRC)/monitor/Makefile
|
||||
|
||||
LIBRARY = pvData
|
||||
pvData_LIBS += Com
|
||||
|
||||
USR_CXXFLAGS_RTEMS = -D__rtems__
|
||||
|
||||
include $(TOP)/configure/RULES
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# This is a Makefile fragment, see ../Makefile
|
||||
|
||||
SRC_DIRS += $(PVDATAAPP)/factory
|
||||
SRC_DIRS += $(PVDATASRC)/factory
|
||||
|
||||
INC += factory.h
|
||||
LIBSRCS += TypeFunc.cpp
|
||||
@@ -1,6 +1,6 @@
|
||||
# This is a Makefile fragment, see ../Makefile
|
||||
|
||||
SRC_DIRS += $(PVDATAAPP)/misc
|
||||
SRC_DIRS += $(PVDATASRC)/misc
|
||||
|
||||
INC += noDefaultMethods.h
|
||||
INC += lock.h
|
||||
@@ -1,6 +1,6 @@
|
||||
# This is a Makefile fragment, see ../Makefile
|
||||
|
||||
SRC_DIRS += $(PVDATAAPP)/monitor
|
||||
SRC_DIRS += $(PVDATASRC)/monitor
|
||||
|
||||
INC += monitor.h
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# This is a Makefile fragment, see ../Makefile
|
||||
|
||||
SRC_DIRS += $(PVDATAAPP)/property
|
||||
SRC_DIRS += $(PVDATASRC)/property
|
||||
|
||||
INC += alarm.h
|
||||
INC += pvAlarm.h
|
||||
@@ -1,6 +1,6 @@
|
||||
# This is a Makefile fragment, see ../Makefile
|
||||
|
||||
SRC_DIRS += $(PVDATAAPP)/pv
|
||||
SRC_DIRS += $(PVDATASRC)/pv
|
||||
|
||||
INC += pvType.h
|
||||
INC += pvIntrospect.h
|
||||
@@ -1,6 +1,6 @@
|
||||
# This is a Makefile fragment, see ../Makefile
|
||||
|
||||
SRC_DIRS += $(PVDATAAPP)/pvMisc
|
||||
SRC_DIRS += $(PVDATASRC)/pvMisc
|
||||
|
||||
INC += bitSetUtil.h
|
||||
|
||||
Reference in New Issue
Block a user