diff options
| author | Michael Biebl <biebl@debian.org> | 2010-11-29 00:47:11 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2010-11-29 00:47:11 +0100 |
| commit | 9fae01fa351805b2903e535736e06971bc0b925e (patch) | |
| tree | c19bccf84c9f894e50fae678ba6ee2b2044e2d30 /marshallers/Makefile.am | |
Imported Upstream version 0.8.1 upstream/0.8.1
Diffstat (limited to 'marshallers/Makefile.am')
| -rw-r--r-- | marshallers/Makefile.am | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/marshallers/Makefile.am b/marshallers/Makefile.am new file mode 100644 index 00000000..357029dd --- /dev/null +++ b/marshallers/Makefile.am @@ -0,0 +1,27 @@ +noinst_LTLIBRARIES = libmarshallers.la + +BUILT_SOURCES = \ + nm-marshal.h \ + nm-marshal.c + +libmarshallers_la_SOURCES = \ + nm-marshal-main.c + +libmarshallers_la_CPPFLAGS = \ + $(GLIB_CFLAGS) \ + -DG_DISABLE_DEPRECATED + + +libmarshallers_la_LIBADD = $(GLIB_LIBS) + +EXTRA_DIST = nm-marshal.list +CLEANFILES = $(BUILT_SOURCES) + +nm-marshal.h: nm-marshal.list + $(GLIB_GENMARSHAL) $< --prefix=_nm_marshal --header > $@ + +nm-marshal.c: nm-marshal.list + $(GLIB_GENMARSHAL) $< --prefix=_nm_marshal --body > $@ + +nm-marshal-main.c: nm-marshal.c nm-marshal.h + |