diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-06-28 22:56:47 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-06-28 22:56:47 +0800 |
commit | 9e3a67f46a0c754c755744a8de00860189d25f4d (patch) | |
tree | f9525531deaffeadeb75f3dc594d18966f567237 /src | |
parent | 40bb44a0371b059500b27820d3264b273a7cbc53 (diff) | |
download | gsoc2013-epiphany-9e3a67f46a0c754c755744a8de00860189d25f4d.tar gsoc2013-epiphany-9e3a67f46a0c754c755744a8de00860189d25f4d.tar.gz gsoc2013-epiphany-9e3a67f46a0c754c755744a8de00860189d25f4d.tar.bz2 gsoc2013-epiphany-9e3a67f46a0c754c755744a8de00860189d25f4d.tar.lz gsoc2013-epiphany-9e3a67f46a0c754c755744a8de00860189d25f4d.tar.xz gsoc2013-epiphany-9e3a67f46a0c754c755744a8de00860189d25f4d.tar.zst gsoc2013-epiphany-9e3a67f46a0c754c755744a8de00860189d25f4d.zip |
Make sure idl generated sources are updated when necessary.Release072
2003-06-28 Marco Pesenti Gritti <marco@it.gnome.org>
* src/.cvsignore:
* src/Makefile.am:
Make sure idl generated sources are updated when
necessary.
Diffstat (limited to 'src')
-rw-r--r-- | src/.cvsignore | 1 | ||||
-rw-r--r-- | src/Makefile.am | 13 |
2 files changed, 8 insertions, 6 deletions
diff --git a/src/.cvsignore b/src/.cvsignore index 2df9a6b39..88f81458e 100644 --- a/src/.cvsignore +++ b/src/.cvsignore @@ -9,3 +9,4 @@ EphyAutomation-skels.c EphyAutomation-stubs.c EphyAutomation.h epiphany-bin +ephy_automation_interface_idl_stamp diff --git a/src/Makefile.am b/src/Makefile.am index 291e55ecc..13d9f598f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -101,13 +101,14 @@ epiphany_bin_LDADD = \ $(EPIPHANY_DEPENDENCY_LIBS) \ $(INTLLIBS) +CLEAN_FILES = \ + $(ephy_automation_interface_idl_sources) \ + ephy_automation_interface_idl_stamp -BUILT_SOURCES= \ - EphyAutomation.h EphyAutomation-common.c EphyAutomation-stubs.c EphyAutomation-skels.c +$(ephy_automation_interface_idl_sources): ephy_automation_interface_idl_stamp -CLEAN_FILES = $(BUILT_SOURCES) - -EphyAutomation-common.c EphyAutomation-stubs.c EphyAutomation-skels.c EphyAutomation.h: $(top_srcdir)/idl/EphyAutomation.idl - $(ORBIT_IDL) -I $(LIBBONOBO_IDL) -I $(BONOBO_ACTIVATION_IDL) $(top_srcdir)/idl/EphyAutomation.idl +ephy_automation_interface_idl_stamp: $(top_srcdir)/idl/EphyAutomation.idl $(ORBIT_IDL) + $(ORBIT_IDL) -I $(LIBBONOBO_IDL) -I $(BONOBO_ACTIVATION_IDL) -I$(top_srcdir) $< + touch $@ EXTRA_DIST = $(top_srcdir)/idl/EphyAutomation.idl |