diff options
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/Makefile.am | 8 | ||||
-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 ***/ |