diff -rux Makefile.config netpbm-10.32/GNUmakefile netpbm/GNUmakefile --- netpbm-10.32/GNUmakefile 2006-02-25 20:02:54.000000000 +0100 +++ netpbm/GNUmakefile 2006-02-28 22:22:35.000000000 +0100 @@ -89,6 +89,7 @@ OMIT_CONFIG_RULE = 1 OMIT_VERSION_H_RULE = 1 +OMIT_INTTYPES_RULE = 1 include $(SRCDIR)/Makefile.common $(BUILDDIR)/Makefile.config: $(SRCDIR)/Makefile.config.in Only in netpbm: GNUmakefile~ diff -rux Makefile.config netpbm-10.32/Makefile.common netpbm/Makefile.common --- netpbm-10.32/Makefile.common 2006-02-25 19:53:48.000000000 +0100 +++ netpbm/Makefile.common 2006-02-28 22:14:52.000000000 +0100 @@ -129,13 +129,11 @@ $(IMPORTINC_LIB_FILES) \ $(IMPORTINC_LIB_UTIL_FILES) \ -$(IMPORTINC_ROOT_FILES):importinc/%:$(SRCDIR)/% +$(IMPORTINC_ROOT_FILES):importinc/%:$(BUILDDIR)/% mkdir -p importinc rm -f $@ $(SYMLINK) $< $@ -importinc/pm_config.h: $(BUILDDIR)/pm_config.h - $(IMPORTINC_LIB_FILES):importinc/%:$(SRCDIR)/lib/% mkdir -p importinc rm -f $@ @@ -168,6 +166,11 @@ $(MAKE) -C $(dir $@) $(notdir $@) endif +ifneq ($(OMIT_INTTYPES_RULE),1) +$(BUILDDIR)/inttypes_netpbm.h: + $(MAKE) -C $(dir $@) -f $(SRCDIR)/GNUmakefile $(notdir $@) +endif + # Note that any time you do a make on a fresh Netpbm source tree, # Make notices that 'Makefile.config', which the make files include, does not # exist and runs the "Makefile.config" target, which runs Configure. Only in netpbm: Makefile.common~