From 94dc4571e94e59fb60fef242d871fb2e4f3061d2 Mon Sep 17 00:00:00 2001 From: Krisztian Litkey Date: Sat, 21 Apr 2012 12:15:56 +0300 Subject: [PATCH] common,core: added top-level convenience include files. --- src/Makefile.am | 11 +++++++++++ src/common.h | 13 +++++++++++++ src/core.h | 7 +++++++ 3 files changed, 31 insertions(+) create mode 100644 src/common.h create mode 100644 src/core.h diff --git a/src/Makefile.am b/src/Makefile.am index 7664dd4..ae613a9 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -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 index 0000000..7d51027 --- /dev/null +++ b/src/common.h @@ -0,0 +1,13 @@ +#ifndef __MURPHY_COMMON_H__ +#define __MURPHY_COMMON_H__ + +#include +#include +#include +#include +#include +#include +#include +#include + +#endif diff --git a/src/core.h b/src/core.h new file mode 100644 index 0000000..6394f25 --- /dev/null +++ b/src/core.h @@ -0,0 +1,7 @@ +#ifndef __MURPHY_CORE_H__ +#define __MURPHY_CORE_H__ + +#include +#include + +#endif -- 2.7.4