Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
TOP = ..
include $(TOP)/configure/CONFIG

INSTALL_INCLUDE = $(INSTALL_LOCATION)/include/pv
USR_INCLUDES += -I$(INSTALL_LOCATION)/include

PVDATA_SRC = $(TOP)/src

include $(PVDATA_SRC)/misc/Makefile
Expand Down
4 changes: 2 additions & 2 deletions src/copy/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

SRC_DIRS += $(PVDATA_SRC)/copy

INC += createRequest.h
INC += pvCopy.h
INC += pv/createRequest.h
INC += pv/pvCopy.h

LIBSRCS += createRequest.cpp
LIBSRCS += pvCopy.cpp
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/factory/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

SRC_DIRS += $(PVDATA_SRC)/factory

INC += factory.h
INC += pv/factory.h
LIBSRCS += TypeFunc.cpp
LIBSRCS += FieldCreateFactory.cpp
LIBSRCS += PVField.cpp
Expand Down
File renamed without changes.
46 changes: 23 additions & 23 deletions src/misc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,29 @@

SRC_DIRS += $(PVDATA_SRC)/misc

INC += noDefaultMethods.h
INC += lock.h
INC += requester.h
INC += serialize.h
INC += bitSet.h
INC += byteBuffer.h
INC += epicsException.h
INC += serializeHelper.h
INC += event.h
INC += thread.h
INC += executor.h
INC += timeFunction.h
INC += timer.h
INC += queue.h
INC += messageQueue.h
INC += destroyable.h
INC += status.h
INC += sharedPtr.h
INC += localStaticLock.h
INC += typeCast.h
INC += sharedVector.h
INC += templateMeta.h
INC += current_function.h
INC += pv/noDefaultMethods.h
INC += pv/lock.h
INC += pv/requester.h
INC += pv/serialize.h
INC += pv/bitSet.h
INC += pv/byteBuffer.h
INC += pv/epicsException.h
INC += pv/serializeHelper.h
INC += pv/event.h
INC += pv/thread.h
INC += pv/executor.h
INC += pv/timeFunction.h
INC += pv/timer.h
INC += pv/queue.h
INC += pv/messageQueue.h
INC += pv/destroyable.h
INC += pv/status.h
INC += pv/sharedPtr.h
INC += pv/localStaticLock.h
INC += pv/typeCast.h
INC += pv/sharedVector.h
INC += pv/templateMeta.h
INC += pv/current_function.h

LIBSRCS += byteBuffer.cpp
LIBSRCS += bitSet.cpp
Expand Down
2 changes: 1 addition & 1 deletion src/misc/parseToPOD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include <epicsConvert.h>

#define epicsExportSharedSymbols
#include "typeCast.h"
#include "pv/typeCast.h"

using std::string;

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/misc/typeCast.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include <sstream>

#define epicsExportSharedSymbols
#include "typeCast.h"
#include "pv/typeCast.h"

using epics::pvData::castUnsafe;
using epics::pvData::ScalarType;
Expand Down
6 changes: 3 additions & 3 deletions src/monitor/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

SRC_DIRS += $(PVDATA_SRC)/monitor

INC += monitor.h
INC += monitorPlugin.h
INC += pv/monitor.h
INC += pv/monitorPlugin.h

LIBSRCS += monitor.cpp
LIBSRCS += monitorPlugin.cpp
LIBSRCS += monitorPlugin.cpp
File renamed without changes.
File renamed without changes.
18 changes: 9 additions & 9 deletions src/property/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

SRC_DIRS += $(PVDATA_SRC)/property

INC += alarm.h
INC += pvAlarm.h
INC += control.h
INC += pvControl.h
INC += display.h
INC += pvDisplay.h
INC += pvEnumerated.h
INC += timeStamp.h
INC += pvTimeStamp.h
INC += pv/alarm.h
INC += pv/pvAlarm.h
INC += pv/control.h
INC += pv/pvControl.h
INC += pv/display.h
INC += pv/pvDisplay.h
INC += pv/pvEnumerated.h
INC += pv/timeStamp.h
INC += pv/pvTimeStamp.h

LIBSRCS += alarm.cpp
LIBSRCS += pvAlarm.cpp
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
14 changes: 7 additions & 7 deletions src/pv/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

SRC_DIRS += $(PVDATA_SRC)/pv

INC += pvType.h
INC += pvIntrospect.h
INC += pvData.h
INC += convert.h
INC += standardField.h
INC += standardPVField.h
INC += pvSubArrayCopy.h
INC += pv/pvType.h
INC += pv/pvIntrospect.h
INC += pv/pvData.h
INC += pv/convert.h
INC += pv/standardField.h
INC += pv/standardPVField.h
INC += pv/pvSubArrayCopy.h

2 changes: 1 addition & 1 deletion src/pvMisc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

SRC_DIRS += $(PVDATA_SRC)/pvMisc

INC += bitSetUtil.h
INC += pv/bitSetUtil.h

LIBSRCS += bitSetUtil.cpp

File renamed without changes.
File renamed without changes.