From ef01aedfb4e97af9283b0d54dd362aad809016af Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 12 Nov 2003 01:01:47 +0000 Subject: [PATCH] added support for "make pch" to build a precompiled header. Note that this is not called by default and I don't think it should be - I think the programmer should specifically ask for pch generation when they want it. --- source/Makefile.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/Makefile.in b/source/Makefile.in index 83f266955b7..4aa34020d6c 100644 --- a/source/Makefile.in +++ b/source/Makefile.in @@ -714,6 +714,12 @@ MAKEDIR = || exec false; \ -o $@ @BROKEN_CC@ -mv `echo $@ | sed 's%^.*/%%g'` $@ +# this adds support for precompiled headers. To use it, install a snapshot +# of gcc-3.4 and run 'make pch' before you do the main build. +pch: + rm -f $(srcdir)/include/includes.h.gch + $(CC) -I. -I$(srcdir) $(FLAGS) -c $(srcdir)/include/includes.h -o $(srcdir)/include/includes.h.gch + # These dependencies are only approximately correct: we want to make # sure Samba's paths are updated if ./configure is re-run. Really it # would be nice if "make prefix=/opt/samba all" also rebuilt things, -- 2.11.4.GIT