aboutsummaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2011-12-19 17:24:33 +0100
committerAleksander Morgado <aleksander@lanedo.com>2012-03-15 14:14:34 +0100
commitd22def9309d4051ebd82b76f6704f65ad39d98b5 (patch)
treea3fdf326655bfd3e48c4a438cb5a1394fbdf6165 /build-aux
parent4b8b99ee96f16e3f2d623cb896a4d1bf7f12820f (diff)
build: let enum and error templates be completely generic
Don't include anything in the templates specific to the file to be built, like #ifdef guards in headers or #include in sources.
Diffstat (limited to 'build-aux')
-rw-r--r--build-aux/Makefile.am8
-rw-r--r--build-aux/mm-enums-template.c (renamed from build-aux/mm-enums-types.c.template)2
-rw-r--r--build-aux/mm-enums-template.h (renamed from build-aux/mm-enums-types.h.template)3
-rw-r--r--build-aux/mm-errors-template.c (renamed from build-aux/mm-errors-types.c.template)3
-rw-r--r--build-aux/mm-errors-template.h (renamed from build-aux/mm-errors-types.h.template)6
5 files changed, 5 insertions, 17 deletions
diff --git a/build-aux/Makefile.am b/build-aux/Makefile.am
index 1bf1c38d..8d4ff535 100644
--- a/build-aux/Makefile.am
+++ b/build-aux/Makefile.am
@@ -1,7 +1,7 @@
EXTRA_DIST = \
header-generator.xsl \
- mm-enums-types.h.template \
- mm-enums-types.c.template \
- mm-enums-errors.h.template \
- mm-enums-errors.c.template
+ mm-enums-template.h \
+ mm-enums-template.c \
+ mm-errors-template.h \
+ mm-errors-template.c
diff --git a/build-aux/mm-enums-types.c.template b/build-aux/mm-enums-template.c
index 680a3264..1e789c39 100644
--- a/build-aux/mm-enums-types.c.template
+++ b/build-aux/mm-enums-template.c
@@ -1,6 +1,4 @@
/*** BEGIN file-header ***/
-#include "ModemManager-enums.h"
-#include "mm-enums-types.h"
/*** END file-header ***/
diff --git a/build-aux/mm-enums-types.h.template b/build-aux/mm-enums-template.h
index 0f016630..bf7a059c 100644
--- a/build-aux/mm-enums-types.h.template
+++ b/build-aux/mm-enums-template.h
@@ -1,6 +1,4 @@
/*** BEGIN file-header ***/
-#ifndef __MM_ENUMS_TYPES_H__
-#define __MM_ENUMS_TYPES_H__
#include <glib-object.h>
@@ -20,5 +18,4 @@ GType @enum_name@_get_type (void) G_GNUC_CONST;
/*** BEGIN file-tail ***/
G_END_DECLS
-#endif /* __MM_ENUMS_TYPES_H__ */
/*** END file-tail ***/
diff --git a/build-aux/mm-errors-types.c.template b/build-aux/mm-errors-template.c
index 4505b7d9..3b3127f5 100644
--- a/build-aux/mm-errors-types.c.template
+++ b/build-aux/mm-errors-template.c
@@ -1,7 +1,4 @@
/*** BEGIN file-header ***/
-#include "ModemManager-errors.h"
-#include "mm-errors-types.h"
-
/*** END file-header ***/
/*** BEGIN file-production ***/
diff --git a/build-aux/mm-errors-types.h.template b/build-aux/mm-errors-template.h
index 1a9baf42..78124d4d 100644
--- a/build-aux/mm-errors-types.h.template
+++ b/build-aux/mm-errors-template.h
@@ -1,8 +1,5 @@
/*** BEGIN file-header ***/
-#ifndef __MM_ERRORS_TYPES_H__
-#define __MM_ERRORS_TYPES_H__
-
#include <glib-object.h>
G_BEGIN_DECLS
@@ -23,5 +20,4 @@ GType @enum_name@_get_type (void) G_GNUC_CONST;
/*** BEGIN file-tail ***/
G_END_DECLS
-#endif /* __MM_ERRORS_TYPES_H__ */
-/*** END file-tail ***/ \ No newline at end of file
+/*** END file-tail ***/