diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-01-07 22:59:56 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-01-07 22:59:56 +0800 |
commit | 9362c2d2c2e0a386eac7a0c8f9cb683ad1e3af98 (patch) | |
tree | 98bc5c8cf2da676023ef6df17b99c11b87298de8 /src/Makefile.am | |
parent | c3da24579d8f707e1da5ed2a2e0040e2b724757f (diff) | |
download | gsoc2013-epiphany-9362c2d2c2e0a386eac7a0c8f9cb683ad1e3af98.tar.gz gsoc2013-epiphany-9362c2d2c2e0a386eac7a0c8f9cb683ad1e3af98.tar.zst gsoc2013-epiphany-9362c2d2c2e0a386eac7a0c8f9cb683ad1e3af98.zip |
Avoid unnecessary rebuilts of the generated enum .h files by using stamp
2005-01-07 Christian Persch <chpe@cvs.gnome.org>
* embed/Makefile.am:
* lib/Makefile.am:
* lib/egg/Makefile.am:
* src/Makefile.am:
Avoid unnecessary rebuilts of the generated enum .h files by using
stamp files.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index fa9d5f765..b44c223ae 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -150,6 +150,9 @@ TYPES_SOURCE = \ ephy-type-builtins.c \ ephy-type-builtins.h +stamp_files = \ + stamp-ephy-type-builtins.h + ephy-type-builtins.c: $(INST_H_FILES) $(NOINST_H_FILES) ( cd $(srcdir) && $(GLIB_MKENUMS) \ --fhead "#include \"ephy-type-builtins.h\"\n\n" \ @@ -167,7 +170,9 @@ ephy-type-builtins.c: $(INST_H_FILES) $(NOINST_H_FILES) && ( cmp -s xgen-$(@F) $(@F) || cp xgen-$(@F) $(@F) ) \ && rm -f xgen-$(@F) -ephy-type-builtins.h: $(INST_H_FILES) $(NOINST_H_FILES) +ephy-type-builtins.h: stamp-ephy-type-builtins.h + @true +stamp-ephy-type-builtins.h: $(INST_H_FILES) $(NOINST_H_FILES) ( cd $(srcdir) && $(GLIB_MKENUMS) \ --fhead "#ifndef EPHY_TYPE_BUILTINS_H\n" \ --fhead "#define EPHY_TYPE_BUILTINS_H 1\n\n" \ @@ -179,8 +184,9 @@ ephy-type-builtins.h: $(INST_H_FILES) $(NOINST_H_FILES) --eprod "#define EPHY_TYPE_@ENUMSHORT@ @enum_name@_get_type()\n" \ --eprod "GType @enum_name@_get_type (void);\n" \ $(^F) ) > xgen-$(@F) \ - && ( cmp -s xgen-$(@F) $(@F) || cp xgen-$(@F) $(@F) ) \ - && rm -f xgen-$(@F) + && ( cmp -s xgen-$(@F) $(@F:stamp-%=%) || cp xgen-$(@F) $(@F:stamp-%=%) ) \ + && rm -f xgen-$(@F) \ + && echo timestamp > $(@F) CLEANFILES = $(BUILT_SOURCES) DISTCLEANFILES = $(BUILT_SOURCES) |