From e0970e198698203b9a118df39dd2c7bc15301203 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 10 May 2004 12:38:08 +0000 Subject: r627: remove the precompiled header when we call make clean or make proto metze (This used to be commit e37238a7c7c69e3dfcda319752e13131207d59e4) --- source4/Makefile.in | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'source4') diff --git a/source4/Makefile.in b/source4/Makefile.in index 48f14eadbd..bf7b1d4895 100644 --- a/source4/Makefile.in +++ b/source4/Makefile.in @@ -310,10 +310,11 @@ MAKEDIR = || exec false; \ @BROKEN_CC@ -mv `echo $@ | sed 's%^.*/%%g'` $@ # 'make pch' is extremely useful for fast compiles if you have gcc-3.4 -pch: basics - rm -f $(srcdir)/include/includes.h.gch +pch: pch_clean basics $(CC) -I. -I$(srcdir) $(FLAGS) -c $(srcdir)/include/includes.h -o $(srcdir)/include/includes.h.gch +pch_clean: + rm -f $(srcdir)/include/includes.h.gch idl_full: build/pidl/idl.pm CPP="@CPP@" script/build_idl.sh FULL @@ -535,7 +536,7 @@ clean: delheaders # afterwards. proto_exists: include/proto.h include/build_env.h -delheaders: +delheaders: pch_clean @/bin/rm -f $(srcdir)/include/proto.h $(srcdir)/include/build_env.h include/proto.h: -- cgit