Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/cut-n-paste/toolbar-editor
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2005-05-21 18:38:44 (GMT)
committer Marco Pesenti Gritti <marco@src.gnome.org>2005-05-21 18:38:44 (GMT)
commit01a23c52887fb3de34e475352ae04a0c2e9ee671 (patch)
tree14cb5665fdd80e84e5639ae3a70395752a96016f /cut-n-paste/toolbar-editor
parentd4959e0635eba426bbd00cbc1892c730a28e7f37 (diff)
Release 0.3.1
2005-05-21 Marco Pesenti Gritti <mpg@redhat.com> * NEWS: * configure.ac: * cut-n-paste/toolbar-editor/Makefile.am: Release 0.3.1
Diffstat (limited to 'cut-n-paste/toolbar-editor')
-rw-r--r--cut-n-paste/toolbar-editor/Makefile.am21
1 files changed, 9 insertions, 12 deletions
diff --git a/cut-n-paste/toolbar-editor/Makefile.am b/cut-n-paste/toolbar-editor/Makefile.am
index 5a9b233..a2e5c46 100644
--- a/cut-n-paste/toolbar-editor/Makefile.am
+++ b/cut-n-paste/toolbar-editor/Makefile.am
@@ -2,32 +2,29 @@
INCLUDES = $(TOOLBAR_EDITOR_CFLAGS) \
-DCURSOR_DIR=\"$(pkgdatadir)\"
-BUILT_SOURCES = eggmarshalers.c eggmarshalers.h
-
noinst_LTLIBRARIES = libtoolbareditor.la
libtoolbareditor_la_SOURCES = \
egg-toolbars-model.c \
egg-editable-toolbar.c \
egg-toolbar-editor.c \
- egg-marshal.c
+ egg-marshal.c \
+ eggmarshalers.c
noinst_HEADERS = \
egg-toolbars-model.h \
egg-editable-toolbar.h \
- egg-toolbar-editor.h
+ egg-toolbar-editor.h \
+ eggmarshalers.h
+
+BUILT_SOURCES = eggmarshalers.h eggmarshalers.c
eggmarshalers.h: eggmarshalers.list
- cd $(srcdir) \
- && $(GLIB_GENMARSHAL) --prefix=_egg_marshal eggmarshalers.list --header > xgen-emh \
- && cp xgen-emh eggmarshalers.h \
- && rm -f xgen-emh xgen-emh~
+ $(GLIB_GENMARSHAL) --prefix=_egg_marshal $(srcdir)/eggmarshalers.list --header > eggmarshalers.h
eggmarshalers.c: eggmarshalers.list
- cd $(srcdir) \
- && $(GLIB_GENMARSHAL) --prefix=_egg_marshal eggmarshalers.list --body > xgen-emc \
- && cp xgen-emc eggmarshalers.c \
- && rm -f xgen-emc xgen-emc~
+ echo '#include "eggmarshalers.h"' > eggmarshalers.c
+ $(GLIB_GENMARSHAL) --prefix=_egg_marshal $(srcdir)/eggmarshalers.list --body >> eggmarshalers.c
egg-marshal.c: eggmarshalers.c eggmarshalers.h