common,core: added top-level convenience include files.
authorKrisztian Litkey <krisztian.litkey@intel.com>
Sat, 21 Apr 2012 09:15:56 +0000 (12:15 +0300)
committerKrisztian Litkey <krisztian.litkey@intel.com>
Sat, 21 Apr 2012 09:26:24 +0000 (12:26 +0300)
src/Makefile.am
src/common.h [new file with mode: 0644]
src/core.h [new file with mode: 0644]

index 7664dd4..ae613a9 100644 (file)
@@ -18,6 +18,12 @@ EXTRA_DIST      += common/murphy-common.pc
 pkgconfig_DATA  += common/murphy-common.pc
 
 
+libmurphy_commonh_ladir      =         \
+               $(includedir)/murphy
+
+libmurphy_commonh_la_HEADERS =         \
+               common.h
+
 libmurphy_common_ladir      =          \
                $(includedir)/murphy/common
 
@@ -69,6 +75,11 @@ lib_LTLIBRARIES += libmurphy-core.la
 EXTRA_DIST      += core/murphy-core.pc
 pkgconfig_DATA  += core/murphy-core.pc
 
+libmurphy_coreh_ladir      =           \
+               $(includedir)/murphy
+
+libmurphy_coreh_la_HEADERS =           \
+               core.h
 
 libmurphy_core_ladir      =            \
                $(includedir)/murphy/core
diff --git a/src/common.h b/src/common.h
new file mode 100644 (file)
index 0000000..7d51027
--- /dev/null
@@ -0,0 +1,13 @@
+#ifndef __MURPHY_COMMON_H__
+#define __MURPHY_COMMON_H__
+
+#include <murphy/common/macros.h>
+#include <murphy/common/mm.h>
+#include <murphy/common/log.h>
+#include <murphy/common/list.h>
+#include <murphy/common/mainloop.h>
+#include <murphy/common/hashtbl.h>
+#include <murphy/common/utils.h>
+#include <murphy/common/file-utils.h>
+
+#endif
diff --git a/src/core.h b/src/core.h
new file mode 100644 (file)
index 0000000..6394f25
--- /dev/null
@@ -0,0 +1,7 @@
+#ifndef __MURPHY_CORE_H__
+#define __MURPHY_CORE_H__
+
+#include <murphy/core/context.h>
+#include <murphy/core/plugin.h>
+
+#endif