files buscommand.x and dump.x moved from src/lib/ebus to src/ebusd.

This commit is contained in:
Roland Jax
2014-11-19 21:34:52 +01:00
parent 31246e1431
commit 85c00c9cc7
6 changed files with 10 additions and 10 deletions
+4
View File
@@ -8,6 +8,10 @@ bin_PROGRAMS = ebusd
ebusd_SOURCES = network.cpp \ ebusd_SOURCES = network.cpp \
network.h \ network.h \
dump.cpp \
dump.h \
buscommand.cpp \
buscommand.h \
ebusloop.cpp \ ebusloop.cpp \
ebusloop.h \ ebusloop.h \
baseloop.cpp \ baseloop.cpp \
@@ -17,8 +17,8 @@
* along with ebusd. If not, see http://www.gnu.org/licenses/. * along with ebusd. If not, see http://www.gnu.org/licenses/.
*/ */
#ifndef LIBEBUS_BUSCOMMAND_H_ #ifndef BUSCOMMAND_H_
#define LIBEBUS_BUSCOMMAND_H_ #define BUSCOMMAND_H_
#include "symbol.h" #include "symbol.h"
#include "result.h" #include "result.h"
@@ -61,5 +61,5 @@ private:
pthread_cond_t m_cond; pthread_cond_t m_cond;
}; };
#endif // LIBEBUS_BUSCOMMAND_H_ #endif // BUSCOMMAND_H_
+3 -3
View File
@@ -17,8 +17,8 @@
* along with ebusd. If not, see http://www.gnu.org/licenses/. * along with ebusd. If not, see http://www.gnu.org/licenses/.
*/ */
#ifndef LIBEBUS_DUMP_H_ #ifndef DUMP_H_
#define LIBEBUS_DUMP_H_ #define DUMP_H_
#include <string> #include <string>
@@ -65,4 +65,4 @@ private:
}; };
#endif // LIBEBUS_DUMP_H_ #endif // DUMP_H_
-4
View File
@@ -12,16 +12,12 @@ libebus_a_SOURCES = result.cpp \
data.h \ data.h \
port.cpp \ port.cpp \
port.h \ port.h \
buscommand.cpp \
buscommand.h \
command.cpp \ command.cpp \
command.h \ command.h \
commands.cpp \ commands.cpp \
commands.h \ commands.h \
configfile.cpp \ configfile.cpp \
configfile.h \ configfile.h \
dump.cpp \
dump.h \
decode.cpp \ decode.cpp \
decode.h \ decode.h \
encode.cpp \ encode.cpp \