Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: PATCH: a couple of Makefile fixes



On Dec 8,  2:40pm, zefram@xxxxxxxx wrote:
} Subject: PATCH: a couple of Makefile fixes
}
} --- 124,130 ----
}   config.h.in: stamp-h.in
}   stamp-h.in: configure.in acconfig.h aclocal.m4 aczsh.m4
}   	cd $(sdir) && autoheader
} ! 	echo > $(sdir)/stamp-h.in
}   
}   # ========== DEPENDENCIES FOR DISTRIBUTION ==========
}   

I've been wondering about stuff like this.  Note that this now does not
actually create the file that's the target.  Shouldn't it read:

config.h.in: $(sdir)/stamp-h.in
$(sdir)/stamp-h.in: configure.in acconfig.h aclocal.m4 aczsh.m4

??
Maybe it even needs to be

$(sdir)/config.h.in: $(sdir)/stamp-h.in

??

-- 
Bart Schaefer                                 Brass Lantern Enterprises
http://www.well.com/user/barts              http://www.brasslantern.com



Messages sorted by: Reverse Date, Date, Thread, Author